diff --git a/src/components/molecules/SidePanelHeader.tsx b/src/components/molecules/SidePanelHeader.tsx index 54ae3060..2ad13660 100644 --- a/src/components/molecules/SidePanelHeader.tsx +++ b/src/components/molecules/SidePanelHeader.tsx @@ -10,7 +10,11 @@ import { FastForward } from "@mui/icons-material"; import { useSocketStore } from "../../context/socket"; import { useGlobalInfoStore } from "../../context/globalInfo"; -export const SidePanelHeader = () => { +interface SidePanelHeaderProps { + setShowOutputData: (show: boolean) => void; +} + +export const SidePanelHeader: React.FC = ({ setShowOutputData }) => { const [steppingIsDisabled, setSteppingIsDisabled] = useState(true); @@ -22,8 +26,8 @@ export const SidePanelHeader = () => { return (
- setSteppingIsDisabled(!isPaused)}/> - + */}
);