UNPKG

@nadeshikon/plugin-nextjs

Version:
19 lines (15 loc) 305 B
import { use } from 'react' async function getData() { return { message: 'hello from layout', } } export default function gspLayout(props) { const data = use(getData()) return ( <> <h1 id="layout-message">{data.message}</h1> {props.children} </> ) }