mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
feat: implement FlowExecutor for executing flow definitions with DAG traversal and node execution
This commit is contained in:
17
ccw/frontend/src/App.tsx
Normal file
17
ccw/frontend/src/App.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
// ========================================
|
||||
// App Component
|
||||
// ========================================
|
||||
// Root application component with Router provider
|
||||
|
||||
import { RouterProvider } from 'react-router-dom';
|
||||
import { router } from './router';
|
||||
|
||||
/**
|
||||
* Root App component
|
||||
* Provides routing and global providers
|
||||
*/
|
||||
function App() {
|
||||
return <RouterProvider router={router} />;
|
||||
}
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user