add info in ADDONS_SUPPORT.md

This commit is contained in:
Neville Mehta 2018-05-01 11:25:23 -07:00
parent 621c62f2cc
commit 727e14df48
2 changed files with 16 additions and 20 deletions

View File

@ -1,19 +1,19 @@
## Addon / Framework Support Table
| |[React](app/react)|[React Native](app/react-native)|[Vue](app/vue)|[Angular](app/angular)| [Polymer](app/polymer)| [Mithril](app/mithril)|
| |[React](app/react)|[React Native](app/react-native)|[Vue](app/vue)|[Angular](app/angular)| [Polymer](app/polymer)| [Mithril](app/mithril)| [Marko](app/marko)|
| ----------- |:-------:|:-------:|:-------:|:-------:|:-------:|:-------:|
|[a11y](addons/a11y) |+| | | | | |
|[actions](addons/actions) |+|+|+|+|+|+|
|[background](addons/background) |+| | | | |+|
|[centered](addons/centered) |+| |+| | |+|
|[events](addons/events) |+| | | | | |
|[graphql](addons/graphql) |+| | | | | |
|[info](addons/info) |+| | | | | |
|[jest](addons/jest) |+| | | | | |
|[knobs](addons/knobs) |+|+|+|+|+|+|
|[links](addons/links) |+|+|+|+|+|+|
|[notes](addons/notes) |+| |+|+|+|+|
|[options](addons/options) |+|+|+|+|+|+|
|[storyshots](addons/storyshots) |+|+|+|+| | |
|[storysource](addons/storysource)|+| |+|+|+|+|
|[viewport](addons/viewport) |+| |+|+|+|+|
|[a11y](addons/a11y) |+| | | | | | |
|[actions](addons/actions) |+|+|+|+|+|+|+|
|[background](addons/background) |+| | | | |+| |
|[centered](addons/centered) |+| |+| | |+| |
|[events](addons/events) |+| | | | | | |
|[graphql](addons/graphql) |+| | | | | | |
|[info](addons/info) |+| | | | | | |
|[jest](addons/jest) |+| | | | | | |
|[knobs](addons/knobs) |+|+|+|+|+|+|+|
|[links](addons/links) |+|+|+|+|+|+| |
|[notes](addons/notes) |+| |+|+|+|+| |
|[options](addons/options) |+|+|+|+|+|+| |
|[storyshots](addons/storyshots) |+|+|+|+| | | |
|[storysource](addons/storysource)|+| |+|+|+|+| |
|[viewport](addons/viewport) |+| |+|+|+|+| |

View File

@ -2,10 +2,6 @@ import { storiesOf } from '@storybook/marko';
import { action } from '@storybook/addon-actions';
import Button from '../components/action-button/index.marko';
// storiesOf('Addons|actionlogger', module).add('Action only', () =>
// Button.renderSync({ click: action('action logged!') })
// );
storiesOf('Addons|Actions/Button').add('Simple', () =>
Button.renderSync({ click: action('action logged!') })
);