mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
16 lines
378 B
TypeScript
16 lines
378 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 - Plane Web",
|
|
};
|
|
|
|
export default function ImageLayout({ children }: ImageLayoutProps) {
|
|
return <AdminLayout>{children}</AdminLayout>;
|
|
}
|