mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
18 lines
370 B
JavaScript
18 lines
370 B
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
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.story = {
|
|
name: 'Go to welcome',
|
|
};
|