index.js 410 B

123456789101112131415161718
  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 DemoForm from '../components/Form'
  6. import Project from '../components/ProjectForm'
  7. import ProjectVersionForm from '../components/ProjectVersionForm'
  8. const Index = props => (
  9. <div>
  10. <DemoForm />
  11. <Project />
  12. <ProjectVersionForm />
  13. </div>
  14. )
  15. export default Index