Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 919 Bytes

1-Button.stories.mdx

File metadata and controls

49 lines (41 loc) · 919 Bytes

import { Meta, Story, Preview } from '@storybook/addon-docs/blocks'; import { action } from '@storybook/addon-actions'; import { linkTo } from '@storybook/addon-links';

import { Button } from '@storybook/angular/demo';

Button

This Button document defines a few stories:

{{ component: Button, props: { text: 'Hello Button', }, }} {{ component: Button, props: { text: '😀 😎 👍 💯', }, }} {{ component: Button, props: { text: '😀 😎 👍 💯', onClick: action('This was clicked OMG'), }, }} {{ component: Button, props: { text: 'Go to Welcome Story', onClick: linkTo('Welcome'), }, }}