react-code-dataset / next.js /test /e2e /app-dir /app /pages /exists-but-not-routed.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export async function getServerSideProps() {
return {
props: {
message: 'Hello World!',
},
}
}
export default function Page({ message }) {
return (
<>
<p>hello from exists but not routed {message}</p>
</>
)
}