Spaces:
Sleeping
Sleeping
NeonClary
Initial commit: LLMChats3 - LLM conversation app with React + FastAPI, persona config, orchestrated conversation lifecycle, collapsible sidebar accordions, stop button, and export capabilities
085db90 | import React from 'react'; | |
| import ReactDOM from 'react-dom/client'; | |
| import App from './App'; | |
| const root = ReactDOM.createRoot(document.getElementById('root')); | |
| root.render( | |
| <React.StrictMode> | |
| <App /> | |
| </React.StrictMode> | |
| ); | |