import React from 'react';
import { ScrollView, Dimensions } from 'react-native';
// import moment from 'moment';
import { themes } from '../../app/constants/colors';
import RoomItemComponent from '../../app/presentation/RoomItem';
import StoriesSeparator from './StoriesSeparator';
const date = '2017-10-10T10:00:00Z';
const baseUrl = 'https://open.rocket.chat';
const { width } = Dimensions.get('window');
let _theme = 'light';
const RoomItem = props => (
);
// eslint-disable-next-line react/prop-types
const Separator = ({ title }) => ;
// eslint-disable-next-line react/prop-types
export default ({ theme }) => {
_theme = theme;
return (
{/* We can't add date stories because it breaks jest snapshots
*/}
);
};