diff options
author | 2021-10-15 23:36:30 -0700 | |
---|---|---|
committer | 2021-10-15 23:36:30 -0700 | |
commit | 2461c11536799982b586fdd10af9d67ceba7303d (patch) | |
tree | 17ce4c18f99ce67df441e3a74215876c3da3f45e /examples/react/src | |
parent | f17345ffe4c20d5833b60c7ff0fac3da9c8a3756 (diff) | |
download | bun-2461c11536799982b586fdd10af9d67ceba7303d.tar.gz bun-2461c11536799982b586fdd10af9d67ceba7303d.tar.zst bun-2461c11536799982b586fdd10af9d67ceba7303d.zip |
Cleanup
Diffstat (limited to 'examples/react/src')
-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" |