2026-09-23 17:05:50 +00:00
|
|
|
import React from "react";
|
|
|
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
|
import ViewerApp from "./ViewerApp";
|
|
|
|
|
import "../index.css";
|
|
|
|
|
|
|
|
|
|
ReactDOM.createRoot(document.getElementById("root")!).render(
|
|
|
|
|
<React.StrictMode>
|
|
|
|
|
<ViewerApp />
|
|
|
|
|
</React.StrictMode>,
|
|
|
|
|
);
|