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 -------------------------- src/pages/PhotoCapture/PhotoCapture.module.css | 5 ---- 2 files changed, 44 deletions(-) delete mode 100644 src/pages/PhotoCapture/PhotoCapture.jsx delete mode 100644 src/pages/PhotoCapture/PhotoCapture.module.css (limited to 'src/pages/PhotoCapture') 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 diff --git a/src/pages/PhotoCapture/PhotoCapture.module.css b/src/pages/PhotoCapture/PhotoCapture.module.css deleted file mode 100644 index ec59f61..0000000 --- a/src/pages/PhotoCapture/PhotoCapture.module.css +++ /dev/null @@ -1,5 +0,0 @@ -.card__container { - display: flex; - justify-content: center; - } - \ No newline at end of file -- cgit