import * as React from 'react'; import Box from '@mui/joy/Box'; import Chip from '@mui/joy/Chip'; import Tabs from '@mui/joy/Tabs'; import TabList from '@mui/joy/TabList'; import Tab, { tabClasses } from '@mui/joy/Tab'; import TabPanel from '@mui/joy/TabPanel'; export default function TabsPageExample() { const [index, setIndex] = React.useState(0); return ( setIndex(value)} > Deals{' '} 14 Library{' '} 20 Products{' '} 8 ({ '--bg': theme.vars.palette.background.surface, background: 'var(--bg)', boxShadow: '0 0 0 100vmax var(--bg)', clipPath: 'inset(0 -100vmax)', })} > Deals Library Products ); }