UNPKG

react-static

Version:

A progressive static site generator for React

13 lines (11 loc) 246 B
import React from 'react' import { withRouteData, Link } from 'react-static' // export default withRouteData(({ post }) => ( <div> <Link to="/blog/">{'<'} Back</Link> <br /> <h3>{post.title}</h3> <p>{post.body}</p> </div> ))