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
42 lines
831 B
JavaScript
42 lines
831 B
JavaScript
import React from 'react';
|
|
import {useActionState} from './helper';
|
|
import InputUrl from '../src/components/InputUrl';
|
|
import {InputContainer} from './ui';
|
|
import {withA11y} from '@storybook/addon-a11y';
|
|
|
|
export default {
|
|
title: 'InputUrl',
|
|
component: InputUrl,
|
|
decorators: [withA11y],
|
|
};
|
|
|
|
|
|
export const Valid = () => {
|
|
const [value, setValue] = useActionState("onChange", "http://example.com");
|
|
|
|
return (
|
|
<InputContainer>
|
|
<InputUrl
|
|
value={value}
|
|
onChange={setValue}
|
|
onInput={setValue}
|
|
/>
|
|
</InputContainer>
|
|
);
|
|
};
|
|
|
|
export const Invalid = () => {
|
|
const [value, setValue] = useActionState("onChange", "foo");
|
|
|
|
return (
|
|
<InputContainer>
|
|
<InputUrl
|
|
value={value}
|
|
onChange={setValue}
|
|
onInput={setValue}
|
|
/>
|
|
</InputContainer>
|
|
);
|
|
};
|
|
|
|
|