UNPKG

@nadeshikon/plugin-nextjs

Version:
18 lines (16 loc) 348 B
import { font1 } from '../fonts' export default function Root({ children }) { return ( <html> <head> <title>Hello World</title> </head> <body> <p id="root-layout" className={font1.className}> {JSON.stringify(font1)} </p> {children} </body> </html> ) }