// ** React Imports import { SyntheticEvent, useState } from 'react' // ** MUI Imports import Tab from '@mui/material/Tab' import TabList from '@mui/lab/TabList' import TabPanel from '@mui/lab/TabPanel' import TabContext from '@mui/lab/TabContext' import Typography from '@mui/material/Typography' const TabsColor = () => { // ** State const [value, setValue] = useState('1') const handleChange = (event: SyntheticEvent, newValue: string) => { setValue(newValue) } return ( Cake apple pie chupa chups biscuit liquorice tootsie roll liquorice sugar plum. Cotton candy wafer wafer jelly cake caramels brownie gummies. Chocolate bar carrot cake candy canes sesame snaps. Cupcake pie gummi bears jujubes candy canes. Chupa chups sesame snaps halvah. Danish tiramisu jujubes cupcake chocolate bar cake cheesecake chupa chups. Macaroon ice cream tootsie roll carrot cake gummi bears. ) } export default TabsColor