Add h2 headers for upload components

This commit is contained in:
Michael Merrill 2017-04-04 10:06:07 -06:00
parent 4a3227c509
commit c3b885bf66

View File

@ -15,17 +15,18 @@ export default withData(props => (
margin: 2em;
}
section {
height: calc(50vh - 4em);
padding-top: 3em;
}
`}</style>
</Head>
<h1>Apollo upload example</h1>
<section>
<h1>Apollo upload example (single file)</h1>
<h2>Single file upload</h2>
<p>Select an image to upload and view the response in the console.</p>
<SingleUploader />
</section>
<section>
<h1>Apollo upload example (multiple files)</h1>
<h2>Multiple file upload</h2>
<p>Select multiple images to upload and view the response in the console.</p>
<MultiUploader />
</section>