Jayden Seric 5a935b6765 Renamed “client” “app” for clarity.
It was not intuitive that the “client” contained a client and server.
2017-04-04 02:49:18 +10:00

23 lines
528 B
JavaScript

import Head from 'next/head'
import withData from '../helpers/with-data'
import SingleUploader from '../components/single-uploader'
export default withData(props => (
<div>
<Head>
<title>Apollo upload example</title>
<style>{`
html {
font-family: sans-serif;
}
body {
margin: 2em;
}
`}</style>
</Head>
<h1>Apollo upload example</h1>
<p>Select an image to upload and view the response in the console.</p>
<SingleUploader />
</div>
))