import { Icon } from "@iconify/react"; import { Grid, Typography } from "@mui/material"; import GamePanel from "./gamePanel"; import LoadGame from "./loadGame"; import AnalyzeButton from "./analyzeButton"; import LinearProgressBar from "@/components/LinearProgressBar"; import { useAtomValue } from "jotai"; import { evaluationProgressAtom } from "../states"; export default function ReviewPanelHeader() { const evaluationProgress = useAtomValue(evaluationProgressAtom); return ( Game Report ); }