export default function Post(props) { return

{JSON.stringify(props)}

} export const getStaticProps = ({ preview, previewData, params }) => { return { props: { params, preview: !!preview, previewData: previewData || null, }, } } export const getStaticPaths = () => { return { paths: ['/fallback/first'], fallback: true, } }