Build: Profile Screen
Build a profile screen that uses a custom reusable component to show user info cards.
Target UI
------------------------- | Profile Screen | |-----------------------| | User Info Card | | Name: John Doe | | Email: john@example.com | |-----------------------| | User Info Card | | Name: Jane Smith | | Email: jane@example.com | |-----------------------|
Create a custom component named UserInfoCard that accepts name and email as props.
Use UserInfoCard twice on the Profile Screen with different user data.
Style each card with a border, some padding, and margin.
Display the name and email inside the card.