Started a small habit of building a simple React task each day to revisit concepts and explore React 19.
Created a Tabs component that displays a person's info or their address based on the active tab.
Utilized the useState hook to add state to functional components and toggle between tabs.
Lessons learned: useState is handy for toggling UI elements, keeping state simple makes conditional rendering straightforward, and basic tasks reinforce React muscle memory.