update resource table to support new download links
This commit is contained in:
17
src/pages/resources/[id].tsx
Normal file
17
src/pages/resources/[id].tsx
Normal file
@ -0,0 +1,17 @@
|
||||
// GOOD TUTORIAL
|
||||
|
||||
export default function Resource() {
|
||||
return (
|
||||
<>
|
||||
Hello
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export async function getStaticPaths() {
|
||||
// Return a list of possible value for id
|
||||
}
|
||||
|
||||
export async function getStaticProps({ params }) {
|
||||
// Fetch necessary data for the blog post using params.id
|
||||
}
|
Reference in New Issue
Block a user