react-toolbox/docs/app/components/layout/main/modules/examples/switch_example_1.txt

10 lines
220 B
Plaintext

const SwitchTest = () => (
<fieldset>
<Switch label="Push notifications" />
<Switch checked label="Mail notifications" />
<Switch disabled label="Nothing, thanks"/>
</fieldset>
);
return <SwitchTest />;