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