import React from 'react'; import { Router, Route, Redirect, IndexRoute, IndexRedirect, useRouterHistory } from 'react-router'; import { createHistory } from 'history'; // route components import AppContainer from '../../ui/components/app/container.jsx'; import {setCredentials, subscribeForData} from '../../ui/components/app/service.js'; import UserListContainer from '../../ui/components/user-list/container.jsx'; import ChatContainer from '../../ui/components/chat/ChatContainer.jsx'; const browserHistory = useRouterHistory(createHistory)({ basename: '/html5client', }); export const renderRoutes = () => ( );