UNPKG

@nadeshikon/plugin-nextjs

Version:
21 lines (16 loc) 337 B
import { use } from 'react' export const revalidate = 0 async function getData() { return { message: 'hello from layout', } } export default function gsspLayout(props) { const data = use(getData()) return ( <> <h1 id="layout-message">{data.message}</h1> {props.children} </> ) }