Add decentralized services

This commit is contained in:
gidsi 2020-09-27 00:30:03 +02:00
commit c7d0adf780
No known key found for this signature in database
GPG key ID: B47291090A6E5604
19 changed files with 346 additions and 19 deletions

View file

@ -8,6 +8,7 @@ import { MuiThemeProvider } from '@material-ui/core/styles';
import theme from './style/theme';
import store from './redux/store';
import IndexContainer from './views/Index';
import ServicesList from "./views/ServicesList";
import SpaceList from './views/SpaceList';
import UrlListView from './views/UrlListView';
import layout from './layout';
@ -19,6 +20,7 @@ const App = () => (
<Router>
<div>
<Route path="/list" component={layout(<SpaceList />)} />
<Route path="/services" component={layout(<ServicesList />)} />
<Route path="/urls" component={layout(<UrlListView />)} />
<Route exact path="/" component={layout(<IndexContainer />)} />
</div>
@ -27,4 +29,4 @@ const App = () => (
</MuiThemeProvider>
);
export default App;
export default App;