aboutsummaryrefslogtreecommitdiff
path: root/examples/react/src/index.jsx
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-02-24 19:25:03 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-02-24 19:25:03 -0800
commit896195f5e377beb68fe743f0eb75d023e16703aa (patch)
treee4943fb662231766796c70dae67ba86f2a269e3e /examples/react/src/index.jsx
parent23596b48ca03a74c7555ada3fe1f184d29b777a8 (diff)
downloadbun-896195f5e377beb68fe743f0eb75d023e16703aa.tar.gz
bun-896195f5e377beb68fe743f0eb75d023e16703aa.tar.zst
bun-896195f5e377beb68fe743f0eb75d023e16703aa.zip
slightly clean up react example
Diffstat (limited to 'examples/react/src/index.jsx')
-rw-r--r--examples/react/src/index.jsx6
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/react/src/index.jsx b/examples/react/src/index.jsx
index 26419cdcb..1d316ddf0 100644
--- a/examples/react/src/index.jsx
+++ b/examples/react/src/index.jsx
@@ -2,7 +2,6 @@ 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>
@@ -10,8 +9,3 @@ ReactDOM.render(
</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();