mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-16 22:48:09 +01:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
import React from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import App from "./pages/App";
|
|
import "./index.css"; // Tailwind imports
|
|
|
|
const container = document.getElementById("root");
|
|
const root = createRoot(container);
|
|
|
|
root.render(<App />);
|