react-render-time icon indicating copy to clipboard operation
react-render-time copied to clipboard

React hook to check how much doest it take to render component

react-render-time

React hook to check how much does it take to render
Image

Demo

Edit rw0y7j0z9n

Installation

yarn add react-render-time

Usage

import React from "react"
import useRenderTime from "react-render-time"

const App = () => {
  useRenderTime("App")

  return (
    <div>
      <h1>Hello there</h1>
    </div>
  )
}