feat: add /editor/create to create a flow
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
19a8323058
commit
d06ce4958e
11
packages/web/src/pages/Editor/index.tsx
Normal file
11
packages/web/src/pages/Editor/index.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import * as React from 'react';
|
||||
import { Routes, Route } from 'react-router-dom';
|
||||
import CreateFlowPage from './create';
|
||||
|
||||
export default function Editor() {
|
||||
return (
|
||||
<Routes>
|
||||
<Route path="/create" element={<CreateFlowPage />} />
|
||||
</Routes>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user