mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
📝 add example for Ember on addon-notes
This commit is contained in:
parent
7631bfe1de
commit
9345e8c02b
@ -79,6 +79,33 @@ storiesOf('Button', module).add(
|
|||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### With Ember
|
||||||
|
|
||||||
|
```js
|
||||||
|
import hbs from 'htmlbars-inline-precompile';
|
||||||
|
|
||||||
|
export const button = () => {
|
||||||
|
return {
|
||||||
|
template: hbs`
|
||||||
|
<button>
|
||||||
|
<h4>title</h4>
|
||||||
|
</button>
|
||||||
|
`,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
button.story = {
|
||||||
|
parameters: {
|
||||||
|
notes: {
|
||||||
|
markdown: `
|
||||||
|
##Component usage with block
|
||||||
|
The component is call as any other example but with a block instead of a title param
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
### Upgrading to CSF Format
|
### Upgrading to CSF Format
|
||||||
|
|
||||||
Add `notes` to the `parameters` object:
|
Add `notes` to the `parameters` object:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user