open-consul/ui/packages/consul-ui/app/components/notice
John Cowen 227e7895e5
ui: Move notice storybook to use controls addon (#9126)
2020-11-09 09:14:51 +00:00
..
README.stories.mdx ui: Move notice storybook to use controls addon (#9126) 2020-11-09 09:14:51 +00:00
index.hbs
index.scss
layout.scss
skin.scss

README.stories.mdx

import { Meta, Story, Canvas } from '@storybook/addon-docs/blocks';
import { hbs } from 'ember-cli-htmlbars';

<Meta title="Components/Notice" component="Notice" />

# Notice

<Canvas>
  <Story name="Basic"
    argTypes={{
      type: {
        defaultValue: 'success',
        control: {
          type: 'select',
          options: [
            'success',
            'warning',
            'info',
            'highlight',
          ]
        }
      }
    }}
  >{(args) => ({
    template: hbs`<Notice
        @type={{type}}
      as |notice|>
        <notice.Header>
          <h3>Header</h3>
        </notice.Header>
        <notice.Body>
          <p>
            Body
          </p>
        </notice.Body>
        <notice.Footer>
          <p>
            Footer
          </p>
        </notice.Footer>
      </Notice>`,
    context: args
  })}
  </Story>
</Canvas>