feat: Extend Apps page with search and data

This commit is contained in:
Ali BARIN
2021-10-09 00:16:24 +02:00
parent e0ab059744
commit c9079db77a
13 changed files with 198 additions and 41 deletions

View File

@@ -1,6 +1,7 @@
import { Route, Switch, Redirect } from "react-router";
import Dashboard from 'pages/Dashboard';
import Applications from 'pages/Applications';
import Application from 'pages/Application';
import Flows from 'pages/Flows';
import Explore from 'pages/Explore';
import * as URLS from 'config/urls';
@@ -23,6 +24,10 @@ export default (
<Explore />
</Route>
<Route path={URLS.APP_PATH_PATTERN}>
<Application />
</Route>
<Route exact path="/">
<Redirect to={URLS.DASHBOARD} />
</Route>