mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 03:31:55 +01:00
30 lines
658 B
JavaScript
30 lines
658 B
JavaScript
|
import React from 'react';
|
||
|
import {useActionState} from './helper';
|
||
|
import InputMultiInput from '../src/components/InputMultiInput';
|
||
|
import {InputContainer} from './ui';
|
||
|
import {withA11y} from '@storybook/addon-a11y';
|
||
|
|
||
|
export default {
|
||
|
title: 'InputMultiInput',
|
||
|
component: InputMultiInput,
|
||
|
decorators: [withA11y],
|
||
|
};
|
||
|
|
||
|
|
||
|
export const Basic = () => {
|
||
|
const options = [["FOO", "foo"], ["BAR", "bar"], ["BAZ", "baz"]];
|
||
|
const [value, setValue] = useActionState("onChange", "FOO");
|
||
|
|
||
|
return (
|
||
|
<InputContainer>
|
||
|
<InputMultiInput
|
||
|
options={options}
|
||
|
value={value}
|
||
|
onChange={setValue}
|
||
|
/>
|
||
|
</InputContainer>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
|