Initial commit from ux_aura_assistant

This commit is contained in:
DIVYANSH-675
2026-03-25 01:21:46 +05:30
commit cb404432ee
48 changed files with 2530 additions and 0 deletions

12
App.tsx Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react';
import WorkspaceContainer from './features/workspace/WorkspaceContainer';
/**
* App is the root-level entry point.
* It delegates to specific feature containers to maintain a clean top-level structure.
*/
const App: React.FC = () => {
return <WorkspaceContainer />;
};
export default App;