aboutsummaryrefslogtreecommitdiff
path: root/examples/react/src/index.jsx
blob: 1d316ddf02b1a257db0daa9d0ce41d9a5b9fe8ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import * as React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./App";

ReactDOM.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
  document.getElementById("root")
);