Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lucasbailo/callback

Studying useCallBack
https://github.com/lucasbailo/callback

Last synced: about 1 month ago
JSON representation

Studying useCallBack

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)