Skip to content

Instantly share code, notes, and snippets.

@velopert

velopert/Post.js Secret

Last active January 15, 2017 17:02
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 velopert/7ccccaaa0867baf92e314c17e09f5daf to your computer and use it in GitHub Desktop.
Save velopert/7ccccaaa0867baf92e314c17e09f5daf to your computer and use it in GitHub Desktop.
import React from 'react';
import BigText from '../components/BigText';
const Post = ({params}) => {
return (
<div>
<BigText>{params.id}</BigText>
</div>
);
};
export default Post;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment