index.js 351 B

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