mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 03:21:56 +01:00
32 lines
605 B
JavaScript
32 lines
605 B
JavaScript
|
import React from 'react';
|
||
|
import ModalOpen from '../src/components/ModalOpen';
|
||
|
import {action} from '@storybook/addon-actions';
|
||
|
import {Wrapper} from './ui';
|
||
|
import {withA11y} from '@storybook/addon-a11y';
|
||
|
|
||
|
|
||
|
export default {
|
||
|
title: 'ModalOpen',
|
||
|
component: ModalOpen,
|
||
|
decorators: [withA11y],
|
||
|
};
|
||
|
|
||
|
export const Basic = () => (
|
||
|
<Wrapper>
|
||
|
<div style={{maxHeight: "200px"}}>
|
||
|
<ModalOpen
|
||
|
isOpen={true}
|
||
|
mapStyle={{}}
|
||
|
onChangeMetadataProperty={action("onChangeMetadataProperty")}
|
||
|
onStyleChanged={action("onStyleChanged")}
|
||
|
/>
|
||
|
</div>
|
||
|
</Wrapper>
|
||
|
);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|