mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
15 lines
225 B
JavaScript
15 lines
225 B
JavaScript
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
export default {
|
|
title: 'Welcome',
|
|
parameters: {
|
|
options: { showPanel: false },
|
|
},
|
|
};
|
|
|
|
export const Basic = () => ({
|
|
template: hbs`
|
|
{{welcome-page}}
|
|
`,
|
|
});
|