Lora-ace-step / react-ui /src /main.jsx
Andrew
Consolidate AF3/Qwen pipelines, endpoint templates, and setup docs
8bdd018
raw
history blame contribute delete
234 Bytes
import React from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./styles.css";
createRoot(document.getElementById("root")).render(
<React.StrictMode>
<App />
</React.StrictMode>
);