File size: 381 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import Link from 'next/link'
export default function RootLayout({ children }) {
return (
<html>
<body>
{children}
<Link href="/se/static-prefetch" id="static-prefetch">
Static Prefetch
</Link>
<Link href="/se/dynamic-area/slug" id="dynamic-prefetch">
Dynamic Prefetch
</Link>
</body>
</html>
)
}
|