11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
import type { ReactNode } from "react";
|
|
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "General Settings - God Mode",
|
|
};
|
|
|
|
export default function GeneralLayout({ children }: { children: ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|