UNPKG

@nadeshikon/plugin-nextjs

Version:
18 lines (15 loc) 356 B
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> ) }