mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
16 lines
303 B
JavaScript
16 lines
303 B
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
import Centered from '@storybook/addon-centered/ember';
|
|
|
|
export default {
|
|
title: 'Addon/Centered',
|
|
decorators: [Centered],
|
|
|
|
parameters: {
|
|
component: Centered,
|
|
},
|
|
};
|
|
|
|
export const button = () => ({
|
|
template: hbs`<button>A Button</button>`,
|
|
});
|