mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 01:01:38 +00:00
11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
export const revalidate = 600;
|
|
|
|
export default async function PageLayout({
|
|
children,
|
|
}: {
|
|
children: ReactNode;
|
|
}) {
|
|
return <>{children}</>;
|
|
} |