mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 06:37:45 +01:00
26 lines
543 B
JavaScript
26 lines
543 B
JavaScript
|
import React from 'react';
|
||
|
import ModalLoading from '../src/components/ModalLoading';
|
||
|
import {action} from '@storybook/addon-actions';
|
||
|
import {Wrapper} from './ui';
|
||
|
import {withA11y} from '@storybook/addon-a11y';
|
||
|
|
||
|
|
||
|
export default {
|
||
|
title: 'ModalLoading',
|
||
|
component: ModalLoading,
|
||
|
decorators: [withA11y],
|
||
|
};
|
||
|
|
||
|
export const Basic = () => (
|
||
|
<Wrapper>
|
||
|
<div style={{maxHeight: "200px"}}>
|
||
|
<ModalLoading
|
||
|
isOpen={true}
|
||
|
title="Loading"
|
||
|
message="Loading 'something.geojson'"
|
||
|
/>
|
||
|
</div>
|
||
|
</Wrapper>
|
||
|
);
|
||
|
|