rsnext/test/integration/404-page-ssg/pages/404.js

7 lines
172 B
JavaScript
Raw Normal View History

export const getStaticProps = () => ({
props: { hello: 'world', random: Math.random() },
})
const page = ({ random }) => `custom 404 page ${random}`
export default page