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

6 lines
161 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";
createRoot(document.getElementById("root")!).render(<App />);