diff --git a/src/music-catalogue-ui/components/jobStatusReport.js b/src/music-catalogue-ui/components/jobStatusReport.js index 5ebda57..d79422c 100644 --- a/src/music-catalogue-ui/components/jobStatusReport.js +++ b/src/music-catalogue-ui/components/jobStatusReport.js @@ -1,13 +1,45 @@ -import { useCallback, useState } from "react"; +import React, { useCallback, useState } from "react"; +import styles from "./jobStatusReport.module.css"; +import "react-datepicker/dist/react-datepicker.css"; const JobStatusReport = ({ navigate, logout }) => { const [startDate, setStartDate] = useState(new Date()); + const [endDate, setEndDate] = useState(new Date()); return ( <>
Job Status Report
+
+
+
+
+
+ + setStartDate(date)} + /> +
+
+ + setEndDate(date)} + /> +
+ +
+
+
+
); }; diff --git a/src/music-catalogue-ui/components/jobStatusReport.module.css b/src/music-catalogue-ui/components/jobStatusReport.module.css new file mode 100644 index 0000000..b5308db --- /dev/null +++ b/src/music-catalogue-ui/components/jobStatusReport.module.css @@ -0,0 +1,22 @@ +.reportFormContainer { + display: flex; + justify-content: center; + align-items: center; +} + +.reportForm { + width: 100vw; + padding-top: 20px; + padding-bottom: 20px; +} + +.reportFormLabel { + font-size: 14px; + font-weight: 600; + color: rgb(34, 34, 34); +} + +.reportForm * input { + margin-left: 20px; + margin-right: 20px; +}