From 89d91a9a15e314bcbe06830ed1b25aafdee3a8b0 Mon Sep 17 00:00:00 2001 From: Maxi Gimenez Date: Thu, 13 Jun 2019 10:46:16 +0200 Subject: [PATCH] chore(notes): add angular documentation --- addons/notes/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/addons/notes/README.md b/addons/notes/README.md index c4371d53087..8253c03b1b9 100644 --- a/addons/notes/README.md +++ b/addons/notes/README.md @@ -58,6 +58,27 @@ storiesOf('MyButton', module).add( ); ``` +### With Angular + +```js +import { storiesOf } from '@storybook/vue'; + +import { ButtonComponent } from './button.component'; + +storiesOf('Button', module).add( + 'with some emoji', + () => ({ + component: ButtonComponent, + props: { + text: '😀 😎 👍 💯' + } + }), + { + notes: 'A very simple example of addon notes', + } +); +``` + ## Using Markdown Using Markdown in your notes is supported, Storybook will load Markdown as raw by default.