mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-17 15:08:08 +01:00
basic react API
This commit is contained in:
9
frontend/src/main.jsx
Normal file
9
frontend/src/main.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
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 />);
|
||||
Reference in New Issue
Block a user