1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Remove unused import (patch) (#4493)

This commit is contained in:
Jorge Cuadra 2018-05-29 12:33:21 -05:00 committed by Tim Neutkens
parent cd1a2fbd91
commit 8082eddaef

View file

@ -1,7 +1,6 @@
import initApollo from './init-apollo'
import Head from 'next/head'
import { getDataFromTree } from 'react-apollo'
import propTypes from 'prop-types'
export default (App) => {
return class Apollo extends React.Component {
@ -63,4 +62,4 @@ export default (App) => {
return <App {...this.props} apolloClient={this.apolloClient} />
}
}
}
}