Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucasbailo/callback
Studying useCallBack
https://github.com/lucasbailo/callback
Last synced: about 1 month ago
JSON representation
Studying useCallBack
- Host: GitHub
- URL: https://github.com/lucasbailo/callback
- Owner: lucasbailo
- Created: 2024-10-15T21:04:20.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-15T21:12:16.000Z (3 months ago)
- Last Synced: 2024-10-17T08:19:26.581Z (3 months ago)
- Language: JavaScript
- Homepage: https://callback-orcin.vercel.app
- Size: 85 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Welcome again to another React project! 👋
# Studying useCallback - React Project
## Some code that I'm proud of
```js
const calculateHypotenuse = useCallback((sideA, sideB) => {
const powerA = Math.pow(sideA, 2)
const powerB = Math.pow(sideB, 2)return Math.sqrt((powerA + powerB))
}, [])
```## Built with
- REACT.
## Test the project yourself: [Teste the project here!!!](https://callback-orcin.vercel.app/)
## Author
- Website - [My GitHub](https://github.com/lucasbailo)
- Frontend Mentor - [@lucasbailo](https://www.frontendmentor.io/profile/lucasbailo)
- Instagram - [@lucassbailo](https://www.instagram.com/lucassbailo/)
- LinkedIn - [Lucas Bailo](https://www.linkedin.com/in/lcsbailo)