Add decentralized services
This commit is contained in:
parent
d2422d5036
commit
c7d0adf780
19 changed files with 346 additions and 19 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue