Skip to content

Instantly share code, notes, and snippets.

@velopert
Created January 14, 2017 15:32
Embed
What would you like to do?
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