Modules
circlegiven
circlegiven
CHOI WON JUNE

Shipduck

Test


πŸ˜„

First post.

Highlight code block.

/* css */
h1 {
    padding: 0;
    margin-bottom: 10px;
    border: none;
}

hr {
    margin: 20px 0 40px 0;
}
// javascript
class BlogIndex extends React.Component {
    render() {
        const { data, location, pageContext } = this.props;
        const { title, pageListSize } = data.site.siteMetadata;
        const posts = data.allMarkdownRemark.edges;

        return (
            <Layout location={location} title={title}>
                <SEO
                    title="Main"
                    keywords={[`blog`, `gatsby`, `javascript`, `react`]}
                />
                <PostList
                    data={posts}
                    page={pageContext}
                    path={"/"}
                    pageListSize={pageListSize}
                />
            </Layout>
        );
    }
}

Chinese Salty Egg