diff options
Diffstat (limited to 'examples/react/src/App.jsx')
-rw-r--r-- | examples/react/src/App.jsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/react/src/App.jsx b/examples/react/src/App.jsx index a675d389d..f6cafff4c 100644 --- a/examples/react/src/App.jsx +++ b/examples/react/src/App.jsx @@ -3,12 +3,11 @@ import * as React from "react"; import "./App.css"; function App() { - const ms = Date.now() - parseInt(window.location.search.substring(1), 10); return ( <div className="App"> <header className="App-header"> <img src={logo} className="App-logo" alt="logo" /> - <h3>Loaded in {ms}ms.</h3> + <h3>Welcome to React!</h3> <a className="App-link" href="https://reactjs.org" |