From 49be4dfc3d478ad02876c9238c48c513edac1e7c Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Thu, 28 Jul 2022 17:56:15 +0530 Subject: refactoring folder structure --- client/src/routes/index.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 client/src/routes/index.js (limited to 'client/src/routes/index.js') diff --git a/client/src/routes/index.js b/client/src/routes/index.js new file mode 100644 index 0000000..fc2aeea --- /dev/null +++ b/client/src/routes/index.js @@ -0,0 +1,38 @@ +import React from 'react' +import { Route, Routes } from 'react-router-dom' + +import Home from '../pages/Home/Home' +import Enrollment from '../pages/Enrollment/Enrollment' +import Update from '../pages/Update/Update' +import PhotoCapture from '../pages/Enrollment/PhotoCapture/PhotoCapture' +import DocumentScanner from '../pages/Enrollment/DocumentScanner/DocumentScanner' +import FormTwo from '../pages/Enrollment/FormTwo/FormTwo' +import Address from '../pages/Enrollment/Address/Address' + +const Index = () => { + return ( + + } /> + + } /> + + } /> + + + } /> + + + } /> + + + } /> + + + + } /> + + + ) +} + +export default Index -- cgit