mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
18 lines
416 B
JavaScript
18 lines
416 B
JavaScript
import * as React from 'react';
|
|
import MultiSwitch from './multi-switch';
|
|
|
|
export default { title: 'Navigation | Sliding Switch' };
|
|
|
|
export const _default = () => (
|
|
<MultiSwitch
|
|
name="activity"
|
|
defaultValue="debug"
|
|
onChange={v => console.log(v)}
|
|
choices={[
|
|
{ label: 'Design', value: 'design' },
|
|
{ label: 'Debug', value: 'debug' },
|
|
{ label: 'Test', value: 'test' },
|
|
]}
|
|
/>
|
|
);
|