mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:21:07 +08:00
18 lines
285 B
Plaintext
18 lines
285 B
Plaintext
```js
|
|
// Histogram.stories.js
|
|
|
|
export default {
|
|
title: 'Histogram',
|
|
component: 'histogram-component',
|
|
};
|
|
|
|
export const Default = {
|
|
args: {
|
|
dataType: 'latency',
|
|
showHistogramLabels: true,
|
|
histogramAccentColor: '#1EA7FD',
|
|
label: 'Latency distribution',
|
|
},
|
|
};
|
|
```
|