mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import App from "./App";
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById("root"));
|
|
|
|
root.render(<App />);
|