mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
11 lines
348 B
JavaScript
11 lines
348 B
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
import { storiesOf } from '@storybook/ember';
|
|
import { linkTo } from '@storybook/addon-links';
|
|
|
|
storiesOf('Addon|Links', module).add('Go to welcome', () => ({
|
|
template: hbs`<button {{action onClick}}>This button brings you to welcome</button>`,
|
|
context: {
|
|
onClick: linkTo('Welcome'),
|
|
},
|
|
}));
|