feat: add single execution page

This commit is contained in:
Ali BARIN
2022-03-16 17:37:06 +01:00
parent c9bf7c9e21
commit f11f523b30
24 changed files with 372 additions and 36 deletions

View File

@@ -3,8 +3,9 @@ import Layout from 'components/Layout';
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 Execution from 'pages/Execution';
import Flows from 'pages/Flows';
import Flow from 'pages/Flow';
import Explore from 'pages/Explore';
import Login from 'pages/Login';
@@ -15,9 +16,11 @@ export default (
<Routes>
<Route path={URLS.EXECUTIONS} element={<Layout><Executions /></Layout>} />
<Route path={URLS.EXECUTION_PATTERN} element={<Layout><Execution /></Layout>} />
<Route path={URLS.FLOWS} element={<Layout><Flows /></Layout>} />
<Route path={`${URLS.FLOW_PATTERN}/*`} element={<Layout><Flow /></Layout>} />
<Route path={URLS.FLOW_PATTERN} element={<Layout><Flow /></Layout>} />
<Route path={`${URLS.APPS}/*`} element={<Layout><Applications /></Layout>} />