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