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 --- src/routes/index.js | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/routes/index.js (limited to 'src/routes/index.js') diff --git a/src/routes/index.js b/src/routes/index.js deleted file mode 100644 index fc2aeea..0000000 --- a/src/routes/index.js +++ /dev/null @@ -1,38 +0,0 @@ -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