feat: implement FlowExecutor for executing flow definitions with DAG traversal and node execution

This commit is contained in:
catlog22
2026-01-30 16:59:18 +08:00
parent 0a7c1454d9
commit a5c3dff8d3
92 changed files with 23875 additions and 542 deletions

17
ccw/frontend/src/App.tsx Normal file
View 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;