mirror of
https://github.com/maputnik/editor.git
synced 2026-07-29 17:27:28 +00:00
Fixed more input accessibility issues, also
- Added searchParams based router for easier testing - Added more stories to the storybook
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import React from 'react';
|
||||
import InputButton from '../src/components/InputButton';
|
||||
import {action} from '@storybook/addon-actions';
|
||||
import {InputContainer} from './ui';
|
||||
import {withA11y} from '@storybook/addon-a11y';
|
||||
|
||||
|
||||
export default {
|
||||
title: 'InputButton',
|
||||
component: InputButton,
|
||||
decorators: [withA11y],
|
||||
};
|
||||
|
||||
export const Basic = () => (
|
||||
<InputContainer>
|
||||
<InputButton onClick={action('onClick')}>
|
||||
Hello InputButton
|
||||
</InputButton>
|
||||
</InputContainer>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user