mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 00:23:01 +08:00
7 lines
208 B
JavaScript
7 lines
208 B
JavaScript
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
import App from "../src/";
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
ReactDOM.render(<App />, document.getElementById("root"));
|
|
});
|