mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 06:27:46 +01:00
3727c9ad5e
Fixes #814 * fix: remove outdated references to mapbox * docs: fix references in readme * chore: fix mapbox references in tests * chore: fix mapbox references in stories, webpack config * chore: remove empty array
28 lines
581 B
JavaScript
28 lines
581 B
JavaScript
import React from 'react';
|
|
import ModalDebug from '../src/components/ModalDebug';
|
|
import {action} from '@storybook/addon-actions';
|
|
import {Wrapper} from './ui';
|
|
import {withA11y} from '@storybook/addon-a11y';
|
|
|
|
|
|
export default {
|
|
title: 'ModalDebug',
|
|
component: ModalDebug,
|
|
decorators: [withA11y],
|
|
};
|
|
|
|
export const Basic = () => (
|
|
<Wrapper>
|
|
<div style={{maxHeight: "200px"}}>
|
|
<ModalDebug
|
|
isOpen={true}
|
|
renderer="mlgljs"
|
|
maplibreGlDebugOptions={{}}
|
|
mapView={{zoom: 1, center: {lat: 0, lng: 0}}}
|
|
/>
|
|
</div>
|
|
</Wrapper>
|
|
);
|
|
|
|
|
|
|