feat: add executions page

This commit is contained in:
Ali BARIN
2022-03-11 14:30:43 +01:00
committed by Ömer Faruk Aydın
parent ab82134b88
commit 2218ffd790
15 changed files with 260 additions and 10 deletions

View File

@@ -4,6 +4,7 @@ import PublicLayout from 'components/PublicLayout';
import Applications from 'pages/Applications';
import Application from 'pages/Application';
import Flows from 'pages/Flows';
import Executions from 'pages/Executions';
import Flow from 'pages/Flow';
import Explore from 'pages/Explore';
import Login from 'pages/Login';
@@ -12,6 +13,8 @@ import * as URLS from 'config/urls';
export default (
<Routes>
<Route path={URLS.EXECUTIONS} element={<Layout><Executions /></Layout>} />
<Route path={URLS.FLOWS} element={<Layout><Flows /></Layout>} />
<Route path={`${URLS.FLOW_PATTERN}/*`} element={<Layout><Flow /></Layout>} />