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 ( <>

{data.message}

{props.children} ) }