mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
import { storiesOf } from '@storybook/ember';
|
|
|
|
storiesOf('Welcome', module)
|
|
.addParameters({ options: { showAddonPanel: false } })
|
|
.add('basic', () => ({
|
|
template: hbs`
|
|
{{welcome-page}}
|
|
`,
|
|
}));
|