📝 add example for Ember on addon-notes (#8978)

📝 add example for Ember on addon-notes
This commit is contained in:
Norbert de Langen 2019-11-27 12:29:33 +01:00 committed by GitHub
commit a3277ab7c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
Add `notes` to the `parameters` object: