mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-27 23:15:23 +01:00
22 lines
478 B
JavaScript
22 lines
478 B
JavaScript
|
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>
|
||
|
);
|
||
|
|