mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 06:37:45 +01:00
2cc179acc1
- Added searchParams based router for easier testing - Added more stories to the storybook
44 lines
893 B
JavaScript
44 lines
893 B
JavaScript
import React from 'react';
|
|
import {useActionState} from './helper';
|
|
import InputNumber from '../src/components/InputNumber';
|
|
import {InputContainer} from './ui';
|
|
import {withA11y} from '@storybook/addon-a11y';
|
|
|
|
export default {
|
|
title: 'InputNumber',
|
|
component: InputNumber,
|
|
decorators: [withA11y],
|
|
};
|
|
|
|
export const Basic = () => {
|
|
const [value, setValue] = useActionState("onChange", 1);
|
|
|
|
return (
|
|
<InputContainer>
|
|
<InputNumber
|
|
name="number"
|
|
value={value}
|
|
onChange={setValue}
|
|
/>
|
|
</InputContainer>
|
|
);
|
|
};
|
|
|
|
export const Range = () => {
|
|
const [value, setValue] = useActionState("onChange", 1);
|
|
|
|
return (
|
|
<InputContainer>
|
|
<InputNumber
|
|
name="number"
|
|
value={value}
|
|
onChange={setValue}
|
|
min={1}
|
|
max={24}
|
|
allowRange={true}
|
|
rangeStep={1}
|
|
/>
|
|
</InputContainer>
|
|
);
|
|
};
|
|
|