insomnia/packages/insomnia-components/components/switch.stories.js

23 lines
439 B
JavaScript
Raw Normal View History

2020-04-26 20:33:39 +00:00
import React from 'react';
import Switch from './switch';
export default { title: 'Navigation | Sliding Switch' };
2020-04-26 20:33:39 +00:00
2020-05-14 20:27:43 +00:00
export const _design = () => (
<Switch
optionItems={[
{ label: 'DESIGN', selected: true },
{ label: 'DEBUG', selected: false },
]}
/>
);
2020-04-26 20:33:39 +00:00
2020-05-14 20:27:43 +00:00
export const _debug = () => (
<Switch
optionItems={[
{ label: 'DESIGN', selected: false },
{ label: 'DEBUG', selected: true },
]}
/>
);