mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
15 lines
204 B
TypeScript
15 lines
204 B
TypeScript
import * as React from 'react'
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html>
|
|
<head />
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|