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/AppContainer.jsx'; import {setCredentials, subscribeForData} from '../../ui/components/app/AppService.js'; import UserListContainer from '../../ui/components/user-list/UserListContainer.jsx'; import ChatContainer from '../../ui/components/chat/ChatContainer.jsx'; const browserHistory = useRouterHistory(createHistory)({ basename: '/html5client' }); export const renderRoutes = () => ( );