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