Files
DefectingCat.github.io/app/g/layout.tsx
DefectingCat b19914b68a format code
remove end of line
2023-05-17 14:58:22 +08:00

12 lines
184 B
TypeScript

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