mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-09 23:31:56 +01:00
2cc179acc1
- Added searchParams based router for easier testing - Added more stories to the storybook
27 lines
565 B
JavaScript
27 lines
565 B
JavaScript
import React from 'react';
|
|
import {useActionState} from './helper';
|
|
import InputColor from '../src/components/InputColor';
|
|
import {InputContainer} from './ui';
|
|
import {withA11y} from '@storybook/addon-a11y';
|
|
|
|
export default {
|
|
title: 'InputColor',
|
|
component: InputColor,
|
|
decorators: [withA11y],
|
|
};
|
|
|
|
|
|
export const Basic = () => {
|
|
const [color, setColor] = useActionState("onChange", "#ff0000");
|
|
|
|
return (
|
|
<InputContainer>
|
|
<InputColor
|
|
label="Foobar"
|
|
value={color}
|
|
onChange={setColor}
|
|
/>
|
|
</InputContainer>
|
|
);
|
|
};
|
|
|