33 lines
901 B
TypeScript
33 lines
901 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import Tabs from '@mui/material/Tabs';
|
||
|
|
import Tab from '@mui/material/Tab';
|
||
|
|
import Box from '@mui/material/Box';
|
||
|
|
|
||
|
|
export default function ScrollableTabsButtonPrevent() {
|
||
|
|
const [value, setValue] = React.useState(0);
|
||
|
|
|
||
|
|
const handleChange = (event: React.SyntheticEvent, newValue: number) => {
|
||
|
|
setValue(newValue);
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Box sx={{ maxWidth: { xs: 320, sm: 480 }, bgcolor: 'background.paper' }}>
|
||
|
|
<Tabs
|
||
|
|
value={value}
|
||
|
|
onChange={handleChange}
|
||
|
|
variant="scrollable"
|
||
|
|
scrollButtons={false}
|
||
|
|
aria-label="scrollable prevent tabs example"
|
||
|
|
>
|
||
|
|
<Tab label="Item One" />
|
||
|
|
<Tab label="Item Two" />
|
||
|
|
<Tab label="Item Three" />
|
||
|
|
<Tab label="Item Four" />
|
||
|
|
<Tab label="Item Five" />
|
||
|
|
<Tab label="Item Six" />
|
||
|
|
<Tab label="Item Seven" />
|
||
|
|
</Tabs>
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|