mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
15 lines
301 B
TypeScript
15 lines
301 B
TypeScript
import { ReactNode } from "react";
|
|
import { Metadata } from "next";
|
|
|
|
interface ImageLayoutProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Images Settings - God Mode",
|
|
};
|
|
|
|
export default function ImageLayout({ children }: ImageLayoutProps) {
|
|
return <>{children}</>;
|
|
}
|