forked from github/plane
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
import { ReactNode } from "react";
|
|
// layouts
|
|
import { AdminLayout } from "@/layouts/admin-layout";
|
|
|
|
interface ImageLayoutProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
const ImageLayout = ({ children }: ImageLayoutProps) => <AdminLayout>{children}</AdminLayout>;
|
|
|
|
export default ImageLayout;
|