// ** React Imports import { SyntheticEvent, useState } from 'react' // ** MUI Imports import Tab from '@mui/material/Tab' import Card from '@mui/material/Card' import TabList from '@mui/lab/TabList' import TabPanel from '@mui/lab/TabPanel' import Button from '@mui/material/Button' import TabContext from '@mui/lab/TabContext' import Typography from '@mui/material/Typography' import CardContent from '@mui/material/CardContent' const CardNavigation = () => { // ** State const [value, setValue] = useState('1') const handleChange = (event: SyntheticEvent, newValue: string) => { setValue(newValue) } return ( Header One Pudding tiramisu caramels. Gingerbread gummies danish chocolate bar toffee marzipan. Wafer wafer cake powder danish oat cake. Header Two Dragée chupa chups soufflé cheesecake jelly tootsie roll cupcake marzipan. Carrot cake sweet roll gummi bears caramels jelly beans. Header Three Icing cake macaroon macaroon jelly chocolate bar. Chupa chups dessert dessert soufflé chocolate bar jujubes gummi bears lollipop. ) } export default CardNavigation