mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 04:01:55 +01:00
28 lines
513 B
JavaScript
28 lines
513 B
JavaScript
|
import React from 'react';
|
||
|
import InputJson from '../src/components/InputJson';
|
||
|
import {action} from '@storybook/addon-actions';
|
||
|
import {Wrapper} from './ui';
|
||
|
import {withA11y} from '@storybook/addon-a11y';
|
||
|
|
||
|
|
||
|
export default {
|
||
|
title: 'InputJson',
|
||
|
component: InputJson,
|
||
|
decorators: [withA11y],
|
||
|
};
|
||
|
|
||
|
export const Basic = () => {
|
||
|
const layer = {
|
||
|
id: "background",
|
||
|
type: "background",
|
||
|
};
|
||
|
|
||
|
return <Wrapper>
|
||
|
<InputJson
|
||
|
layer={layer}
|
||
|
onClick={action('onClick')}
|
||
|
/>
|
||
|
</Wrapper>
|
||
|
};
|
||
|
|