const App = () => { const [variant, setVariant] = React.useState('A'); return (
); }; ReactDOM.createRoot(document.getElementById('root')).render();