import { Box } from '@mui/material'; import React from 'react'; interface TabPanelProps { children?: React.ReactNode; index: number; value: number; } export function TabPanel({ children, value, index, ...other }: TabPanelProps) { return ( ); } export function a11yProps(index: number) { return { id: `provider-tab-${index}`, 'aria-controls': `provider-tabpanel-${index}`, }; }