export interface TabPanelProps { children?: React.ReactNode; id: string; tabId: string; style: React.CSSProperties; } export default function TabPanel({ children, id, tabId, style }: TabPanelProps) { return (
{children}
); }