mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 06:47:44 +01:00
45 lines
841 B
JavaScript
45 lines
841 B
JavaScript
|
import React from 'react';
|
||
|
import {useActionState} from './helper';
|
||
|
import InputArray from '../src/components/InputArray';
|
||
|
import {Wrapper} from './ui';
|
||
|
import {withA11y} from '@storybook/addon-a11y';
|
||
|
|
||
|
export default {
|
||
|
title: 'InputArray',
|
||
|
component: InputArray,
|
||
|
decorators: [withA11y],
|
||
|
};
|
||
|
|
||
|
|
||
|
export const NumberType = () => {
|
||
|
const [value, setValue] = useActionState("onChange", [1,2,3]);
|
||
|
|
||
|
return (
|
||
|
<Wrapper>
|
||
|
<InputArray
|
||
|
type="number"
|
||
|
value={value}
|
||
|
length={3}
|
||
|
onChange={setValue}
|
||
|
/>
|
||
|
</Wrapper>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export const StringType = () => {
|
||
|
const [value, setValue] = useActionState("onChange", ["a", "b", "c"]);
|
||
|
|
||
|
return (
|
||
|
<Wrapper>
|
||
|
<InputArray
|
||
|
type="string"
|
||
|
value={value}
|
||
|
length={3}
|
||
|
onChange={setValue}
|
||
|
/>
|
||
|
</Wrapper>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
|