import React from 'react' import DocumentTitle from 'react-document-title' import { prefixLink } from 'gatsby-helpers' import { GoogleFont, TypographyStyle } from 'react-typography' import typography from './utils/typography' import HTMLScripts from 'html-scripts' import HTMLStyles from 'html-styles' module.exports = React.createClass({ displayName: 'HTML', propTypes: { body: React.PropTypes.string, }, render () { const { body } = this.props const title = DocumentTitle.rewind() return ( {title}
) }, })