Files
DefectingCat.github.io/app/g/layout.tsx
2023-04-27 11:53:50 +08:00

11 lines
183 B
TypeScript

import { ReactNode } from 'react';
export const revalidate = 600;
export default async function PageLayout({
children,
}: {
children: ReactNode;
}) {
return <>{children}</>;
}