File size: 172 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
export const getStaticProps = () => ({
props: { hello: 'world', random: Math.random() },
})
const page = ({ random }) => `custom 404 page ${random}`
export default page
|
1e92f2d |
1 2 3 4 5 6 7 |
export const getStaticProps = () => ({
props: { hello: 'world', random: Math.random() },
})
const page = ({ random }) => `custom 404 page ${random}`
export default page
|