Skip to content

Instantly share code, notes, and snippets.

@velopert
Created January 14, 2017 15:32
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/40c36e02806159d3412562565039a8df to your computer and use it in GitHub Desktop.
Save velopert/40c36e02806159d3412562565039a8df to your computer and use it in GitHub Desktop.
import React from 'react';
import BigText from '../components/BigText';
import PostLinks from '../components/PostLinks';
const Posts = ({children}) => {
return (
<div>
<BigText>포스트</BigText>
<PostLinks/>
{children}
</div>
);
};
export default Posts;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment