Skip to content

Instantly share code, notes, and snippets.

@tonyspiro
Last active July 18, 2018 14:43
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 tonyspiro/67376ea64c4ecff6faba35cc4f7ee8ad to your computer and use it in GitHub Desktop.
Save tonyspiro/67376ea64c4ecff6faba35cc4f7ee8ad to your computer and use it in GitHub Desktop.
// page.js
import SectionList from './section-list'
export default ({ page }) => (
<div>
<h1>{page.title}</h1>
<div dangerouslySetInnerHTML={{__html: page.content}}></div>
<SectionList sections={page.metadata.sections}/>
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment