mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
11 lines
207 B
JavaScript
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>
|
|
);
|
|
}
|