/* eslint-disable import/no-extraneous-dependencies, import/no-unresolved, import/extensions, react/prop-types */ import React from 'react'; import { storiesOf } from '@storybook/react-native'; import { ThemeContext } from '../../theme'; import { longText } from '../../../storybook/utils'; import BackgroundContainer from '.'; const stories = storiesOf('BackgroundContainer', module); stories.add('basic', () => ); stories.add('loading', () => ); stories.add('text', () => ); stories.add('long text', () => ); const ThemeStory = ({ theme, ...props }) => ( ); stories.add('dark theme - loading', () => ); stories.add('dark theme - text', () => ); stories.add('black theme - loading', () => ); stories.add('black theme - text', () => );