mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 08:37:44 +01:00
19 lines
348 B
JavaScript
19 lines
348 B
JavaScript
|
import React from 'react';
|
||
|
import Button from '../src/components/Button';
|
||
|
import {action} from '@storybook/addon-actions';
|
||
|
import {Wrapper} from './ui';
|
||
|
|
||
|
export default {
|
||
|
title: 'Button',
|
||
|
component: Button,
|
||
|
};
|
||
|
|
||
|
export const Simple = () => (
|
||
|
<Wrapper>
|
||
|
<Button onClick={action('onClick')}>
|
||
|
Hello Button
|
||
|
</Button>
|
||
|
</Wrapper>
|
||
|
);
|
||
|
|