export function getStaticProps({ preview, previewData }) { return { props: { preview: preview || false, previewData: previewData || null, }, } } export default function Page(props) { return ( <>

/preview

{JSON.stringify(props)}

) }