import React from "react"; import { Box, Typography } from "@mui/material"; import Card from "@mui/material/Card"; import Menu from "@mui/material/Menu"; import MenuItem from "@mui/material/MenuItem"; import IconButton from "@mui/material/IconButton"; import MoreHorizIcon from "@mui/icons-material/MoreHoriz"; import CustomerSatisfactionChart from "./CustomerSatisfactionChart"; const CustomerSatisfaction = () => { // Menu const [anchorEl, setAnchorEl] = React.useState(null); const open = Boolean(anchorEl); const handleClick = (event) => { setAnchorEl(event.currentTarget); }; const handleClose = () => { setAnchorEl(null); }; return ( <> Customer Satisfaction Today Last Month Last Year All Time {/* CustomerSatisfactionChart */} ); }; export default CustomerSatisfaction;