My first time using MUI with TypeScript has hit a roadblock with the new sx
prop. Check out the error displayed by TypeScript in the screenshot linked below:
https://i.sstatic.net/JYDTX.png
Interestingly, the error only pops up on the TabPanel
Component, even though I've used it seamlessly on other MUI components. Here's my code:
/* eslint-disable react/require-default-props */
import * as React from 'react';
import Tabs from '@mui/material/Tabs';
import Tab from '@mui/material/Tab';
import Typography from '@mui/material/Typography';
import Box from '@mui/material/Box';
interface TabPanelProps {
children?: React.ReactNode;
index: number;
value: number;
}
function TabPanel(props: TabPanelProps) {
const { children, value, index, ...other } = props;
return (
<div
role="tabpanel"
hidden={value !== index}
id={`simple-tabpanel-${index}`}
aria-labelledby={`simple-tab-${index}`}
{...other}
>
{value === index && (
<Box sx={{ p: 3 }}>
<Typography>{children}</Typography>
</Box>
)}
</div>
);
}
function a11yProps(index: number) {
return {
id: `simple-tab-${index}`,
'aria-controls': `simple-tabpanel-${index}`
};
}
export default function MenteeVolunteerTabs() {
const [value, setValue] = React.useState(0);
const handleChange = (event: React.SyntheticEvent, newValue: number) => {
setValue(newValue);
};
return (
<Box sx={{ width: '100%' }}>
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
<Tabs value={value} onChange={handleChange} aria-label="basic tabs example">
<Tab label="Volunteer" {...a11yProps(0)} />
<Tab label="Mentee" {...a11yProps(1)} />
</Tabs>
</Box>
<TabPanel value={value} index={0} sx={{ backgroundColor: '#F4F6F7' }}>
Item One
</TabPanel>
<TabPanel value={value} index={1}>
Item Two
</TabPanel>
</Box>
);
}
Looking for assistance in resolving this error. Any help is appreciated.