mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { storiesOf } from '@storybook/angular';
|
|
import { withNotes } from '@storybook/addon-notes';
|
|
import { action } from '@storybook/addon-actions'
|
|
import { linkTo } from '@storybook/addon-links'
|
|
|
|
import { Welcome, Button } from '@storybook/angular/demo';
|
|
|
|
declare let module;
|
|
|
|
storiesOf('Welcome', module)
|
|
.add('to Storybook', () => ({
|
|
component: Welcome,
|
|
props: {}
|
|
}))
|
|
|
|
storiesOf('Button', module)
|
|
.add('with text', () => ({
|
|
component: Button,
|
|
props: {
|
|
text: 'Hello Button'
|
|
}
|
|
}))
|
|
.add('with some emoji', withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
|
component: Button,
|
|
props: {
|
|
text: '😀 😎 👍 💯'
|
|
}
|
|
})))
|
|
.add('with some emoji and action', withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
|
component: Button,
|
|
props: {
|
|
text: '😀 😎 👍 💯',
|
|
onClick: action('This was clicked OMG')
|
|
}
|
|
})))
|
|
|
|
storiesOf('Another Button', module)
|
|
.add('button with link to another story', () => ({
|
|
component: Button,
|
|
props: {
|
|
text: 'Go to Welcome Story',
|
|
onClick: linkTo('Welcome')
|
|
}
|
|
}))
|