14 lines
359 B
JavaScript
14 lines
359 B
JavaScript
import * as React from 'react';
|
|
import { Routes, Route } from 'react-router-dom';
|
|
import CreateFlowPage from './create';
|
|
import EditorPage from './index';
|
|
export default function EditorRoutes() {
|
|
return (
|
|
<Routes>
|
|
<Route path="/create" element={<CreateFlowPage />} />
|
|
|
|
<Route path="/:flowId" element={<EditorPage />} />
|
|
</Routes>
|
|
);
|
|
}
|