feat: introduce dummy flow editor

This commit is contained in:
Ali BARIN
2021-12-24 17:22:06 +01:00
parent e3184aedb8
commit 11bdbf1727
14 changed files with 172 additions and 14 deletions

View File

@@ -4,7 +4,7 @@ import Applications from 'pages/Applications';
import Application from 'pages/Application';
import Flows from 'pages/Flows';
import Explore from 'pages/Explore';
import Editor from 'pages/Editor';
import EditorRoutes from 'pages/Editor/routes';
import * as URLS from 'config/urls';
export default (
@@ -17,7 +17,7 @@ export default (
<Route path={`${URLS.APP_PATTERN}/*`} element={<Layout><Application /></Layout>} />
<Route path={`${URLS.EDITOR}/*`} element={<Editor />} />
<Route path={`${URLS.EDITOR}/*`} element={<EditorRoutes />} />
<Route path="/" element={<Navigate to={URLS.FLOWS} />} />