2017-08-17 19:31:27 +00:00
|
|
|
/* eslint-disable import/no-extraneous-dependencies, import/no-unresolved, import/extensions */
|
|
|
|
|
2017-12-08 19:36:03 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
|
|
|
|
import { createStore, combineReducers } from 'redux';
|
|
|
|
|
2017-08-17 19:31:27 +00:00
|
|
|
|
|
|
|
import { storiesOf } from '@storybook/react-native';
|
|
|
|
// import { action } from '@storybook/addon-actions';
|
|
|
|
// import { linkTo } from '@storybook/addon-links';
|
|
|
|
|
|
|
|
import DirectMessage from './Channels/DirectMessage';
|
2017-09-01 19:42:50 +00:00
|
|
|
import Avatar from './Avatar';
|
2017-08-17 19:31:27 +00:00
|
|
|
|
2017-12-08 19:36:03 +00:00
|
|
|
const reducers = combineReducers({ settings: () => ({}) });
|
|
|
|
const store = createStore(reducers);
|
|
|
|
|
|
|
|
storiesOf('Avatar', module).addDecorator(story => <Provider store={store}>{story()}</Provider>).add('avatar', () => Avatar);
|
|
|
|
storiesOf('Channel Cell', module).addDecorator(story => <Provider store={store}>{story()}</Provider>).add('Direct Messages', () => DirectMessage);
|
2017-08-17 19:31:27 +00:00
|
|
|
|
|
|
|
// storiesOf('Welcome', module).add('to Storybook', () => <Welcome showApp={linkTo('Button')} />);
|
|
|
|
|
|
|
|
// storiesOf('Button', module)
|
|
|
|
// .addDecorator(getStory => (
|
|
|
|
// <CenterView>
|
|
|
|
// {getStory()}
|
|
|
|
// </CenterView>
|
|
|
|
// ))
|
|
|
|
// .add('with text', () => (
|
|
|
|
// <Button onPress={action('clicked-text')}>
|
|
|
|
// <Text>Hello Button</Text>
|
|
|
|
// </Button>
|
|
|
|
// ))
|