Files
bun.sh/examples/hello-create-react-app/src/index.jsx
Jarred Sumner fb4feea8c3 aarch64 build.zig
Former-commit-id: 701ec4668e8f8276c207d92487633857d2db5ead
2021-09-05 15:18:13 -07:00

18 lines
505 B
JavaScript

import * as React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./App";
import reportWebVitals from "./reportWebVitals";
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById("root")
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();