Using hook of react, useState and useEffect. which allow you to monitor real-time change of components
import { useEffect, useState } from 'react'
# useState
const [list, setList] = useState<string[]>([])
# use Effect
useEffect(() => {
if (list.length != 0)
avisarAPI()
},[list])
Documentation https://legacy.reactjs.org/docs/hooks-intro.html