import React from 'react'; import styles from '../src/app/styles'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import { linkTo } from '@storybook/addon-links'; import { Button, Welcome } from '@storybook/react/demo'; import { Addon } from 'stremio-common'; import { LibraryItemList } from 'stremio-common'; import { MetaItem } from 'stremio-common'; import { ShareAddon } from 'stremio-common'; import { Stream } from 'stremio-common'; import { UserPanel } from 'stremio-common'; import { Video } from 'stremio-common'; storiesOf('Welcome', module).add('to Storybook', () => ); storiesOf('Button', module) .add('with text', () => ) .add('with some emoji', () => ( )); storiesOf('Addon', module) .add('addon', () => (
)); storiesOf('LibraryItemList', module) .add('library item list', () => (
)); storiesOf('MetaItem', module) .add('meta item', () => (
)); storiesOf('ShareAddon', module) .add('share addon', () => (
)); storiesOf('Stream', module) .add('stream', () => (
)); storiesOf('UserPanel', module) .add('user panel', () => (
)); storiesOf('Video', module) .add('video', () => (
));