Upd. why-storybook.md

This commit is contained in:
Mauricio Rivera 2023-03-21 10:34:43 -05:00
parent 394c46edd4
commit 1adf1dc27e
4 changed files with 81 additions and 0 deletions

View File

@ -52,6 +52,8 @@ You write stories for granular UI component variation and then use those stories
'preact/histogram-story.js.mdx',
'html/histogram-story.js.mdx',
'html/histogram-story.ts.mdx',
'solid/histogram-story.js.mdx',
'solid/histogram-story.ts.mdx',
]}
usesCsf3
csf2Path="why-storybook#snippet-histogram-story"

View File

@ -0,0 +1,23 @@
```js
// Histogram.stories.js|jsx
import { Histogram } from './Histogram';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/solid/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Histogram',
component: Histogram,
};
export const Default = {
args: {
dataType: 'latency',
showHistogramLabels: true,
histogramAccentColor: '#1EA7FD',
label: 'Latency distribution',
},
};
```

View File

@ -0,0 +1,28 @@
```ts
// Histogram.stories.ts|tsx
import type { Meta, StoryObj } from "storybook-solidjs";
import { Histogram } from './Histogram';
const meta = {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/solid/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Histogram',
component: Histogram,
} satisfies Meta<typeof Histogram>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
args: {
dataType: 'latency',
showHistogramLabels: true,
histogramAccentColor: '#1EA7FD',
label: 'Latency distribution',
},
};
```

View File

@ -0,0 +1,28 @@
```ts
// Histogram.stories.ts|tsx
import type { Meta, StoryObj } from "storybook-solidjs";
import { Histogram } from './Histogram';
const meta: Meta<typeof Histogram> = {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/solid/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Histogram',
component: Histogram,
};
export default meta;
type Story = StoryObj<typeof Histogram>;
export const Default: Story = {
args: {
dataType: 'latency',
showHistogramLabels: true,
histogramAccentColor: '#1EA7FD',
label: 'Latency distribution',
},
};
```