Consider the following React component… function HappyBirthd…
Consider the following React component… function HappyBirthday() { const = useState(18); const celebrate = useCallback(() => { setAge(age + 1); }, []); return Happy Birthday! } What will be the value of age after the “Happy Birthday” button is clicked?