Skip to content

Instantly share code, notes, and snippets.

@deepakkashyap3013
Last active August 11, 2023 19:17
Show Gist options
  • Select an option

  • Save deepakkashyap3013/9bccef97fc11ad15d7b494aef86d2547 to your computer and use it in GitHub Desktop.

Select an option

Save deepakkashyap3013/9bccef97fc11ad15d7b494aef86d2547 to your computer and use it in GitHub Desktop.
import React from "react";
export const UserInfo = ({ user }) => {
const { name, age, hairColor, hobbies } = user || {};
return (
<>
<h3>{name}</h3>
<p>Age: {age}</p>
<p>Haircolor: {hairColor}</p>
<h3>Hobbies</h3>
<ul>
{hobbies.map((hobby, i) => {
return <li key={i}>{hobby}</li>;
})}
</ul>
</>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment