Skip to content

Instantly share code, notes, and snippets.

@wokejacqueline
Created September 13, 2018 00:24
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 wokejacqueline/aa1741e103e212bc01289954347734c5 to your computer and use it in GitHub Desktop.
Save wokejacqueline/aa1741e103e212bc01289954347734c5 to your computer and use it in GitHub Desktop.
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