UNPKG

@nadeshikon/plugin-nextjs

Version:
11 lines (10 loc) 202 B
export default function Layout({ children }) { return ( <html lang="en"> <head> <title>my static blog</title> </head> <body>{children}</body> </html> ) }