File size: 343 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"use strict";
import React from "react";
import { createRoot } from "react-dom/client";
import Docs from "./docs";
const container = document.getElementById("rapp");
const root = createRoot(container);
React.initializeTouchEvents && React.initializeTouchEvents(true);
root.render(
<React.StrictMode>
<Docs />
</React.StrictMode>
);
|