Files

11 lines
186 B
JavaScript

import { connection } from 'next/server'
export default async function Layout({ children }) {
await connection()
return (
<html>
<body>{children}</body>
</html>
)
}