import * as React from 'react'; import FormControl from '@mui/joy/FormControl'; import FormLabel from '@mui/joy/FormLabel'; import RadioGroup from '@mui/joy/RadioGroup'; import Radio from '@mui/joy/Radio'; import Table from '@mui/joy/Table'; import Sheet from '@mui/joy/Sheet'; function createData(name, calories, fat, carbs, protein) { return { name, calories, fat, carbs, protein }; } const rows = [ createData('Frozen yoghurt', 159, 6.0, 24, 4.0), createData('Ice cream sandwich', 237, 9.0, 37, 4.3), createData('Eclair', 262, 16.0, 24, 6.0), createData('Cupcake', 305, 3.7, 67, 4.3), createData('Gingerbread', 356, 16.0, 49, 3.9), ]; export default function TableStripe() { const [stripe, setStripe] = React.useState('odd'); return ( Stripe: setStripe(event.target.value)} > {rows.map((row) => ( ))}
Dessert (100g serving) Calories Fat (g) Carbs (g) Protein (g)
{row.name} {row.calories} {row.fat} {row.carbs} {row.protein}
); }