UNPKG

react-garden

Version:

React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.

66 lines (59 loc) 1.93 kB
// ** React Imports import { useState } from 'react' // ** MUI Imports import Tab from '@mui/material/Tab' import TabPanel from '@mui/lab/TabPanel' import TabContext from '@mui/lab/TabContext' import { styled } from '@mui/material/styles' import Typography from '@mui/material/Typography' import MuiTabList from '@mui/lab/TabList' // Styled TabList component const TabList = styled(MuiTabList)(({ theme }) => ({ '& .MuiTabs-indicator': { backgroundColor: 'transparent' }, '& .Mui-selected': { backgroundColor: theme.palette.primary.main, color: `${theme.palette.common.white} !important` }, '& .MuiTab-root': { minHeight: 38, minWidth: 130, borderRadius: theme.shape.borderRadius } })) const TabsCustomized = () => { // ** State const [value, setValue] = useState('1') const handleChange = (event, newValue) => { setValue(newValue) } return ( <TabContext value={value}> <TabList onChange={handleChange} aria-label='customized tabs example'> <Tab value='1' label='Tab 1' /> <Tab value='2' label='Tab 2' /> <Tab value='3' label='Tab 3' /> </TabList> <TabPanel value='1'> <Typography> Cake apple pie chupa chups biscuit liquorice tootsie roll liquorice sugar plum. Cotton candy wafer wafer jelly cake caramels brownie gummies. </Typography> </TabPanel> <TabPanel value='2'> <Typography> Chocolate bar carrot cake candy canes sesame snaps. Cupcake pie gummi bears jujubes candy canes. Chupa chups sesame snaps halvah. </Typography> </TabPanel> <TabPanel value='3'> <Typography> Danish tiramisu jujubes cupcake chocolate bar cake cheesecake chupa chups. Macaroon ice cream tootsie roll carrot cake gummi bears. </Typography> </TabPanel> </TabContext> ) } export default TabsCustomized