Created
September 13, 2018 00:24
-
-
Save wokejacqueline/aa1741e103e212bc01289954347734c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import Helmet from 'react-helmet'; | |
import Link from 'gatsby-link'; | |
import Image from 'gatsby-image'; | |
import get from 'lodash/get'; | |
import Card from '../Card'; | |
import style from './style.module.scss'; | |
class Blog extends React.Component { | |
render() { | |
const edges = get(this, 'props.data.allMdx.edges'); | |
const post = this.props.data.mdx; | |
const siteTitle = get(this.props, 'data.site.siteMetadata.title'); | |
return ( | |
<div className={style.container}> | |
EMPTY FUCKING CONTAINER | |
</div> | |
); | |
} | |
} | |
export default Blog; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment