export const getStaticProps = ({ preview, previewData }) => { return { props: { preview: !!preview, previewData: previewData || null, }, } } export default function Index(props) { return
{JSON.stringify(props)}