storybook/docs/snippets/preact/histogram-story.mdx.mdx
2022-09-09 22:01:12 +01:00

27 lines
661 B
Plaintext

```md
<!-- Histogram.stories.mdx -->
import { Canvas, Meta, Story } from '@storybook/addon-docs/';
import { Histogram } from './Histogram';
<Meta title="Histogram" component={Histogram} />
<!--
👇 Render functions are a framework specific feature to allow you control on how the component renders.
See https://storybook.js.org/docs/7.0/preact/api/csf
to learn how to use render functions.
-->
<Canvas>
<Story
name="Default"
args={{
dataType: 'latency',
showHistogramLabels: true,
histogramAccentColor: '#1EA7FD',
label: 'Latency distribution',
}}
render={(args) => <Histogram {...args} />} />
</Canvas>
```