Update packages and run prettier

This commit is contained in:
Kyle Mathews 2017-08-04 18:12:17 -07:00
parent 6bc49591c3
commit 8f03c8589e
6 changed files with 63 additions and 65 deletions

View file

@ -1,15 +1,15 @@
import React from "react"
import Helmet from "react-helmet"
import Link from "gatsby-link"
import get from "lodash/get"
import React from 'react'
import Helmet from 'react-helmet'
import Link from 'gatsby-link'
import get from 'lodash/get'
import Bio from "../components/Bio"
import { rhythm, scale } from "../utils/typography"
import Bio from '../components/Bio'
import { rhythm, scale } from '../utils/typography'
class BlogPostTemplate extends React.Component {
render() {
const post = this.props.data.markdownRemark
const siteTitle = get(this.props, "data.site.siteMetadata.title")
const siteTitle = get(this.props, 'data.site.siteMetadata.title')
return (
<div>
@ -20,7 +20,7 @@ class BlogPostTemplate extends React.Component {
<p
style={{
...scale(-1 / 5),
display: "block",
display: 'block',
marginBottom: rhythm(1),
marginTop: rhythm(-1),
}}