index.js 263 B

1234567891011121314
  1. /**
  2. * Using Prisma:
  3. * https://www.prisma.io/docs/1.29/get-started/03-build-graphql-servers-with-prisma-JAVASCRIPT-e001/
  4. */
  5. import FileUpload from '../components/FileUpload'
  6. const Index = props => (
  7. <div>
  8. <FileUpload />
  9. </div>
  10. )
  11. export default Index