Код: Выделить всё
Switch button label
stuff
Код: Выделить всё
const Greeting = () => {
const [expanded, setExpanded] = React.useState(false);
const id = React.useId();
return (
{setExpanded(!expanded);}}
>
{expanded ? 'Collapse' : 'Expand'}
{expanded && (
Content
)}
);
};
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render();Код: Выделить всё
Подробнее здесь: https://stackoverflow.com/questions/796 ... -acting-as
Мобильная версия