Skip to content

lucasbailo/callback

Repository files navigation

Welcome again to another React project! 👋

Studying useCallback - React Project

Some code that I'm proud of

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!!!

Author