import * as React from 'react'; import Box from '@mui/joy/Box'; import List from '@mui/joy/List'; import ListItem from '@mui/joy/ListItem'; import ListDivider from '@mui/joy/ListDivider'; import Radio from '@mui/joy/Radio'; import RadioGroup from '@mui/joy/RadioGroup'; import Typography from '@mui/joy/Typography'; import Switch from '@mui/joy/Switch'; export default function ExamplePaymentChannels() { const [orientation, setOrientation] = React.useState('vertical'); return ( Pay with setOrientation(event.target.checked ? 'horizontal' : 'vertical') } /> {['Credit Card', 'Paypal', 'QR Code'].map((value, index) => ( {index !== 0 && } ))} ); }