mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
11 lines
186 B
JavaScript
11 lines
186 B
JavaScript
import { connection } from 'next/server'
|
|
|
|
export default async function Layout({ children }) {
|
|
await connection()
|
|
return (
|
|
<html>
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|