import React from 'react'; import blogDatas from '@generated/blogDatas'; // inner blog component for the article itself, without sidebar/header/footer class BlogPost extends React.Component { render() { const {match} = this.props; const post = blogDatas.find(blog => blog.path === match.path); return
{post && post.content}
; } } module.exports = BlogPost;