Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
342 Bytes
// @flow
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import "./c3jscustom.css";
import App from "./App.react";
const rootElement = document.getElementById("root");
if (rootElement) {
ReactDOM.render(<App />, rootElement);
} else {
throw new Error("Could not find root element to mount to!");
}