From ffefbc1c2a382597c6d9f90977f8c907e26fbe2e Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Thu, 28 Jul 2022 17:51:44 +0530 Subject: Added components and some refactoring --- src/pages/PhotoCapture/PhotoCapture.jsx | 39 --------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/pages/PhotoCapture/PhotoCapture.jsx (limited to 'src/pages/PhotoCapture/PhotoCapture.jsx') diff --git a/src/pages/PhotoCapture/PhotoCapture.jsx b/src/pages/PhotoCapture/PhotoCapture.jsx deleted file mode 100644 index c16b4d0..0000000 --- a/src/pages/PhotoCapture/PhotoCapture.jsx +++ /dev/null @@ -1,39 +0,0 @@ -import React from 'react' -import Header from '../../components/Header/Header' -import CardScanner from '../../components/Card/CardScanner' -import styles from './PhotoCapture.module.css' -import { Button, Grid, Typography } from '@mui/material' - -const PhotoCapture = () => { - return ( - <>
-
- -
- - - - - - - - -

-
- - Please look into the camera

- Click Capture to Capture the photo

- Click Reset the remove the captured photo
-
-
- - - ) -} - -export default PhotoCapture -- cgit