Last active
July 18, 2018 14:43
-
-
Save tonyspiro/67376ea64c4ecff6faba35cc4f7ee8ad to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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