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