Skip to content

Instantly share code, notes, and snippets.

View andrsdev's full-sized avatar

Andrés Sanabria andrsdev

View GitHub Profile
@andrsdev
andrsdev / [slug].tsx
Last active June 6, 2021 00:30
fancy-blog-with-graphcms
interface Props {
post: Post
}
export const getStaticPaths: GetStaticPaths = async () => {
const posts = await getAllPosts({
locales: ['en'],
})
return {