import * as React from 'react'; import Box from '@mui/material/Box'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; export default function DynamicValues() { const [color, setColor] = React.useState('#007fff'); return ( Pick a color to see a live preview setColor(event.target.value)} /> ); }