@nadeshikon/plugin-nextjs
Version:
Run Next.js seamlessly on Netlify
18 lines (15 loc) • 356 B
JavaScript
import React from 'react'
import RootStyleRegistry from './root-style-registry'
export const revalidate = 0
export default function AppLayout({ children }) {
return (
<html>
<head>
<title>RSC</title>
</head>
<body>
<RootStyleRegistry>{children}</RootStyleRegistry>
</body>
</html>
)
}