storybook/examples/ember-cli/stories/welcome-banner.stories.js

29 lines
676 B
JavaScript

import { hbs } from 'ember-cli-htmlbars';
import { action } from '@storybook/addon-actions';
export default {
title: 'welcome-banner',
component: 'WelcomeBanner',
};
export const Basic = () => ({
template: hbs`
{{welcome-banner
backgroundColor=backgroundColor
titleColor=titleColor
subTitleColor=subTitleColor
title=title
subtitle=subtitle
click=(action onClick)
}}
`,
context: {
backgroundColor: '#FDF4E7',
titleColor: '#DF4D37',
subTitleColor: '#B8854F',
title: 'Welcome to storybook',
subtitle: 'This environment is completely editable',
onClick: action('clicked'),
},
});