Skip to content

Instantly share code, notes, and snippets.

@canertuzunar
Created April 14, 2021 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save canertuzunar/0428fe3f285ae7d9e8277f3012bed3b1 to your computer and use it in GitHub Desktop.
Save canertuzunar/0428fe3f285ae7d9e8277f3012bed3b1 to your computer and use it in GitHub Desktop.
//src/template/blog-template.jsx
import React from 'react'
export default function Blog({pageContext: { frontmatter, html }}) {
return(
<>
<h1>{frontmatter.title}</h1>
<p>{frontmatter.date}</p>
<div dangerouslySetInnerHTML={{__html: html}}></div>
</>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment