import hbs from 'htmlbars-inline-precompile';
import { linkTo } from '@storybook/addon-links';
export default {
title: 'Addon|Links',
};
export const goToWelcome = () => ({
template: hbs``,
context: {
onClick: linkTo('Welcome'),
},
});
goToWelcome.story = {
name: 'Go to welcome',
};