mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01: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>;
|
|
}
|