UNPKG

react-static

Version:

A progressive static site generator for React

14 lines (12 loc) 279 B
import React from 'react' import { withRouteData, Link } from 'react-static' import convert from 'htmr' // export default withRouteData(({ post }) => ( <div> <Link to="/blog/">{'<'} Back</Link> <br /> <h3>{post.title}</h3> {convert(post.contents)} </div> ))