import React from 'react';
import { ScrollView } from 'react-native';
import { longText } from '../../../../.storybook/utils';
import { ThemeContext, TSupportedThemes } from '../../../theme';
import { Message } from '../../../containers/message/Message.stories';
import { MessageTypeLoad, themes } from '../../../lib/constants';
import LoadMoreComponent from '.';
export default {
title: 'RoomView/LoadMore'
};
const load = () => new Promise(res => setTimeout(res, 1000));
const LoadMore = ({ ...props }) => ;
export const Basic = () => (
<>
>
);
const ThemeStory = ({ theme }: { theme: TSupportedThemes }) => (
);
export const LightTheme = () => ;
export const DarkTheme = () => ;
export const BlackTheme = () => ;