import React from 'react' import Helmet from "react-helmet" import { prefixLink } from 'gatsby-helpers' import { GoogleFont, TypographyStyle } from 'react-typography' import typography from './utils/typography' const BUILD_TIME = new Date().getTime() module.exports = React.createClass({ displayName: 'HTML', propTypes: { body: React.PropTypes.string, }, render () { const { body } = this.props const head = Helmet.rewind(); let css if (process.env.NODE_ENV === 'production') { css = } return (
{head.title.toComponent()} {head.meta.toComponent()}