https://github.com/Kelin2025/react-render-time
React hook to check how much doest it take to render component
https://github.com/Kelin2025/react-render-time
Last synced: 8 months ago
JSON representation
React hook to check how much doest it take to render component
- Host: GitHub
- URL: https://github.com/Kelin2025/react-render-time
- Owner: Kelin2025
- Created: 2018-11-13T02:15:26.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-21T22:08:39.000Z (about 7 years ago)
- Last Synced: 2025-04-08T18:16:59.659Z (9 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 26
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-list - react-render-time
README
# react-render-time
React hook to check how much does it take to render

## Demo
[](https://codesandbox.io/s/rw0y7j0z9n)
## Installation
```
yarn add react-render-time
```
## Usage
```js
import React from "react"
import useRenderTime from "react-render-time"
const App = () => {
useRenderTime("App")
return (
Hello there
)
}
```