mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
import { ReactNode } from "react";
|
|
import { Metadata } from "next";
|
|
import { AdminLayout } from "@/layouts/admin-layout";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "AI Settings - God Mode",
|
|
};
|
|
|
|
export default function AILayout({ children }: { children: ReactNode }) {
|
|
return <AdminLayout>{children}</AdminLayout>;
|
|
}
|