Files
react/compiler/crates/react_hermes_parser/tests/fixtures/timers.js
2024-04-02 16:49:31 -07:00

11 lines
207 B
JavaScript

function Component(props) {
const start = performance.now();
const now = Date.now();
const time = performance.now() - start;
return (
<div>
rendering took {time} at {now}
</div>
);
}