42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
"use client";
|
|
import React, { useState } from "react";
|
|
import Box from "@mui/material/Box";
|
|
import Button from "@mui/material/Button";
|
|
import Modal from "@mui/material/Modal";
|
|
import Stack from "@mui/material/Stack";
|
|
import ReviewModalContent from "../../../components/reviewModal/components/reviewModalContent/ReviewModalContent";
|
|
import { Typography } from "@mui/material";
|
|
import TanStackTable from "@/components/table/TanStackTable";
|
|
const style = {
|
|
position: "absolute" as "absolute",
|
|
top: "50%",
|
|
left: "50%",
|
|
transform: "translate(-50%, -50%)",
|
|
width: "90%",
|
|
maxWidth: 400,
|
|
bgcolor: "background.paper",
|
|
border: "none",
|
|
boxShadow: 24,
|
|
borderRadius: 4,
|
|
paddingInline: 2,
|
|
paddingBlock: 4,
|
|
};
|
|
const labels: { [index: string]: string } = {
|
|
0.5: "Useless",
|
|
1: "Useless+",
|
|
1.5: "Poor",
|
|
2: "Poor+",
|
|
2.5: "Ok",
|
|
3: "Ok+",
|
|
3.5: "Good",
|
|
4: "Good+",
|
|
4.5: "Excellent",
|
|
5: "Excellent+",
|
|
};
|
|
|
|
const HomePage = () => {
|
|
return <Box>{/* <Button onClick={handleOpen}>Open modal</Button> */}</Box>;
|
|
};
|
|
|
|
export default HomePage;
|