timers.js11 lines
mainRawfunction Component(props) {
const start = performance.now();
const now = Date.now();
const time = performance.now() - start;
return (
<div>
rendering took {time} at {now}
</div>
);
}
Loading syntax highlighting…