mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 07:47:46 +01:00
2cc179acc1
- Added searchParams based router for easier testing - Added more stories to the storybook
27 lines
553 B
JavaScript
27 lines
553 B
JavaScript
import React from 'react';
|
|
import {useActionState} from './helper';
|
|
import FieldString from '../src/components/FieldString';
|
|
import {Wrapper} from './ui';
|
|
import {withA11y} from '@storybook/addon-a11y';
|
|
|
|
export default {
|
|
title: 'FieldString',
|
|
component: FieldString,
|
|
decorators: [withA11y],
|
|
};
|
|
|
|
|
|
export const Basic = () => {
|
|
const [value, setValue] = useActionState("onChange", "Hello world");
|
|
|
|
return (
|
|
<Wrapper>
|
|
<FieldString
|
|
label="Foobar"
|
|
value={value}
|
|
onChange={setValue}
|
|
/>
|
|
</Wrapper>
|
|
);
|
|
};
|
|
|