0
2
JRJose Romero
nextstaticpageβ’β’β’
NextJS Javascript RecipesNext page with static dynamic props using getStaticProps
Library: next
Shortcut: next.page.static.create
Filename pattern: *pages/*.jsx
const Page = (props) {
}
export async function getStaticProps() {
return {
props: {
}
}
}
export default Page