update resource table to support new download links

This commit is contained in:
Brandon Egger
2023-03-16 18:00:04 -05:00
parent 8890d8d477
commit 79ee4dad61
2 changed files with 23 additions and 6 deletions

View 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
}