Add MDX props example for angular

This commit is contained in:
Michael Shilman 2020-02-07 09:19:27 +08:00
parent 8a959de743
commit ec8a5d4644

View File

@ -1,8 +1,9 @@
import { moduleMetadata } from '@storybook/angular';
import { Story, Meta } from '@storybook/addon-docs/blocks';
import { Story, Meta, Props } from '@storybook/addon-docs/blocks';
import { Welcome, Button } from '@storybook/angular/demo';
import { linkTo } from '@storybook/addon-links';
import { text, withKnobs } from '@storybook/addon-knobs';
import { ButtonComponent } from './doc-button/doc-button.component';
# Storybook Docs for Angular
@ -74,6 +75,12 @@ Let's add another one. The UI updates automatically as you'd expect.
}}
</Story>
## Props
We can automatically generate props tables from Angular components:
<Props of={ButtonComponent} />
## More info
For more info, check out the [Storybook Docs Technical Preview](https://docs.google.com/document/d/1un6YX7xDKEKl5-MVb-egnOYN8dynb5Hf7mq0hipk8JE/edit?usp=sharing).