Day 1: React Basics QUESTION 1: Create a functional component that accepts name and age as props and displays a greeting message. QUESTION 2: Create a class component with a state variable count. Add buttons to: Increment the count Decrement the count Reset the count to zero QUESTION 3: Create a parent component that passes an array of strings as a prop to a child component. Display each string as a list item in the child component. QUESTION 4: Build a simple form with an input field and a submit button. Use state to manage the value entered in the input field and display the entered value below the form when the form is submitted. QUESTION 5: Create a component that uses conditional rendering to display different content based on whether a user is logged in.