ChatBot / ui /src /main.tsx
krishnadhulipalla's picture
Add application file
249a397
raw
history blame
259 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";
import "./tailwind.css";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>
);