import React from "react"; import { Box } from "@mui/material"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import InputLabel from "@mui/material/InputLabel"; import MenuItem from "@mui/material/MenuItem"; import FormControl from "@mui/material/FormControl"; import Select from "@mui/material/Select"; import Table from "@mui/material/Table"; import TableBody from "@mui/material/TableBody"; import TableCell from "@mui/material/TableCell"; import TableContainer from "@mui/material/TableContainer"; import TableHead from "@mui/material/TableHead"; import TableRow from "@mui/material/TableRow"; import Paper from "@mui/material/Paper"; import { styled } from "@mui/material/styles"; import LinearProgress, { linearProgressClasses, } from "@mui/material/LinearProgress"; import styles from "@/components/Dashboard/ProjectManagement/AllProjects/AllProjects.module.css"; const BorderLinearProgress = styled(LinearProgress)(({ theme }) => ({ height: 5, borderRadius: 5, [`&.${linearProgressClasses.colorPrimary}`]: { backgroundColor: theme.palette.grey[theme.palette.mode === "light" ? 200 : 800], }, [`& .${linearProgressClasses.bar}`]: { borderRadius: 5, backgroundColor: theme.palette.mode === "light" ? "#757FEF" : "#308fe8", }, })); const AllProjects = () => { const [select, setSelect] = React.useState(""); const handleChange = (event) => { setSelect(event.target.value); }; return ( <> All Projects Select Project Name Members Budget Status Completion Due Date Image Product UI/UX Design
Image Image Image
$14,000 Active 70% 08 Mar 2021
Image Public Beta Release
Image Image
$14,000 Complete 100% 17 Apr 2021
Image SEO Marketing
Image Image
$12,000 Complete 100% 10 Sep 2021
Image New Office Building
Image Image Image
$9,000 Pending 0% 06 Aug 2022
Image Product Devlopment
Image Image Image
$16,000 Active 80% 08 Mar 2022
); }; export default AllProjects;