export function unstable_getStaticProps({ preview, previewData }) { return { props: { hasProps: true, preview, previewData } } } export default function({ hasProps, preview, previewData }) { if (!hasProps) { return
Has No Props
} return (
      {JSON.stringify(preview) + ' and ' + JSON.stringify(previewData)}
    
) }