import { hbs } from 'ember-cli-htmlbars';
import { linkTo } from '@storybook/addon-links';
export default {
title: 'Addon/Links',
};
export const GoToWelcome = () => ({
template: hbs``,
context: {
onClick: linkTo('Welcome'),
},
});
GoToWelcome.storyName = 'Go to welcome';