mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-09 23:51:56 +01:00
2cc179acc1
- Added searchParams based router for easier testing - Added more stories to the storybook
29 lines
474 B
JavaScript
29 lines
474 B
JavaScript
import React from 'react';
|
|
import ModalSurvey from '../src/components/ModalSurvey';
|
|
import {action} from '@storybook/addon-actions';
|
|
import {Wrapper} from './ui';
|
|
import {withA11y} from '@storybook/addon-a11y';
|
|
|
|
|
|
export default {
|
|
title: 'ModalSurvey',
|
|
component: ModalSurvey,
|
|
decorators: [withA11y],
|
|
};
|
|
|
|
export const Basic = () => (
|
|
<Wrapper>
|
|
<div style={{maxHeight: "200px"}}>
|
|
<ModalSurvey
|
|
isOpen={true}
|
|
/>
|
|
</div>
|
|
</Wrapper>
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|