Files
agent-chat-ui/src/main.tsx

11 lines
264 B
TypeScript
Raw Normal View History

2025-02-18 19:35:46 +01:00
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";
2025-02-27 14:08:24 -08:00
import { StreamProvider } from "./providers/Stream.tsx";
2025-02-18 19:35:46 +01:00
2025-02-27 14:08:24 -08:00
createRoot(document.getElementById("root")!).render(
<StreamProvider>
<App />
2025-02-27 14:08:24 -08:00
</StreamProvider>,
);