16 lines
505 B
Plaintext
16 lines
505 B
Plaintext
|
|
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
|
||
|
|
<Tabs value={value} onChange={handleChange} aria-label="basic tabs example">
|
||
|
|
<Tab label="Item One" {...a11yProps(0)} />
|
||
|
|
<Tab label="Item Two" {...a11yProps(1)} />
|
||
|
|
<Tab label="Item Three" {...a11yProps(2)} />
|
||
|
|
</Tabs>
|
||
|
|
</Box>
|
||
|
|
<CustomTabPanel value={value} index={0}>
|
||
|
|
Item One
|
||
|
|
</CustomTabPanel>
|
||
|
|
<CustomTabPanel value={value} index={1}>
|
||
|
|
Item Two
|
||
|
|
</CustomTabPanel>
|
||
|
|
<CustomTabPanel value={value} index={2}>
|
||
|
|
Item Three
|
||
|
|
</CustomTabPanel>
|