import React from "react"; import MuiTabPanel from "@mui/lab/TabPanel"; export interface TabPanelProps { value: string; } export const TabPanel: React.FC> = ({ value, children }) => { return ( {children} ); };