mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-13 00:44:14 +01:00
27 lines
573 B
JavaScript
27 lines
573 B
JavaScript
|
import React from 'react';
|
||
|
import ScrollContainer from '../src/components/ScrollContainer';
|
||
|
import {action} from '@storybook/addon-actions';
|
||
|
import {Wrapper} from './ui';
|
||
|
import {withA11y} from '@storybook/addon-a11y';
|
||
|
|
||
|
|
||
|
export default {
|
||
|
title: 'ScrollContainer',
|
||
|
component: ScrollContainer,
|
||
|
decorators: [withA11y],
|
||
|
};
|
||
|
|
||
|
export const Basic = () => (
|
||
|
<Wrapper>
|
||
|
<div style={{maxHeight: "200px"}}>
|
||
|
<ScrollContainer>
|
||
|
{[...Array(50).keys()].map(() => {
|
||
|
return <p>Some text</p>
|
||
|
})}
|
||
|
</ScrollContainer>
|
||
|
</div>
|
||
|
</Wrapper>
|
||
|
);
|
||
|
|
||
|
|