aboutsummaryrefslogtreecommitdiff
path: root/examples/react/src/index.jsx
diff options
context:
space:
mode:
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();