Build: Timer Screen
This screen shows a timer that counts seconds after the screen loads. It uses the useEffect hook to start and clean up the timer.
Target UI
------------------- | Timer Screen | |-----------------| | Seconds: 0 | | | | [Reset Timer] | -------------------
Display a seconds counter starting at 0
Use useEffect to start a timer that increments seconds every second
Clean up the timer when the component unmounts
Add a Reset Timer button that sets seconds back to 0