Files
HKSingleParty/99_references/supabase-examples/caching/with-nextjs-13/app/layout.tsx
2025-05-28 09:55:51 +08:00

19 lines
380 B
TypeScript

import './globals.css'
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</head>
<body>{children}</body>
</html>
)
}