import * as React from 'react'; import Box from '@mui/joy/Box'; import FormControl from '@mui/joy/FormControl'; import FormLabel from '@mui/joy/FormLabel'; import Select from '@mui/joy/Select'; import Option from '@mui/joy/Option'; import Tabs from '@mui/joy/Tabs'; import TabList from '@mui/joy/TabList'; import Tab from '@mui/joy/Tab'; import TabPanel from '@mui/joy/TabPanel'; export default function TabsFlexPlacement() { const [direction, setDirection] = React.useState< 'row' | 'column' | 'row-reverse' | 'column-reverse' >('column'); const [placement, setPlacement] = React.useState< 'top' | 'bottom' | 'left' | 'right' >('bottom'); return ( Flex direction Placement Tab A Tab B Tab C Content of Tab A Content of Tab B Content of Tab C ); }