Jayden Seric aa63c4c500 Version 1.0.0.
Initial release.
2017-04-02 23:14:11 +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>
))