From ec423572aaf8ecf80a409fd9a03d73b5d31e444f Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Sat, 13 Aug 2022 21:40:17 +0530 Subject: Implemented update UI --- .../src/pages/Update/UpdateSelect/UpdateSelect.jsx | 34 ++++++++++++++++++++++ .../Update/UpdateSelect/UpdateSelect.module.css | 5 ++++ 2 files changed, 39 insertions(+) create mode 100644 client/src/pages/Update/UpdateSelect/UpdateSelect.jsx create mode 100644 client/src/pages/Update/UpdateSelect/UpdateSelect.module.css (limited to 'client/src/pages/Update/UpdateSelect') diff --git a/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx b/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx new file mode 100644 index 0000000..a903704 --- /dev/null +++ b/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx @@ -0,0 +1,34 @@ +import React from 'react' +import { Link } from 'react-router-dom' + +import Card from '../../../components/Card/Card' +import Header from '../../../components/Header/Header' +import SubmitButton from '../../../components/SubmitButton/SubmitButton' +import styles from './UpdateSelect.module.css' + +const UpdateSelect = () => { + return ( + <> +
+
+ + + + + + + + + +
+ + ) +} + +export default UpdateSelect diff --git a/client/src/pages/Update/UpdateSelect/UpdateSelect.module.css b/client/src/pages/Update/UpdateSelect/UpdateSelect.module.css new file mode 100644 index 0000000..ec59f61 --- /dev/null +++ b/client/src/pages/Update/UpdateSelect/UpdateSelect.module.css @@ -0,0 +1,5 @@ +.card__container { + display: flex; + justify-content: center; + } + \ No newline at end of file -- cgit