mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 05:37:45 +01:00
2cc179acc1
- Added searchParams based router for easier testing - Added more stories to the storybook
29 lines
658 B
JavaScript
29 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>
|
|
);
|
|
};
|
|
|
|
|