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 (