destructure props in react code example

Example 1: definition destructuring react

const Attraction = ({  auth,   auth: { token },  attraction: { id, url_name, name, image_url, average_rating }}) => {  return (    <div auth={auth} key={id}>      <Link token={token} to={`/attractions/${url_name}`} key={id}>        <img alt={name} src={image_url} />        <h1>{name}</h1>      </Link>      <StarRatings rating={average_rating} />    </div>  );};

Example 2: definition destructuring react

props = {      attraction: {      address1: "350 5th Ave",      address2: "",      average_rating: 4,      city: "New York",      country: "US",      display_address: ["350 5th Ave", "New York, NY 10118"],      id: 9,      latitude_coordinate: "40.748442285082",      location: {        created_at: "2018–03–07T03:56:20.717Z",        id: 1,        latitude_coordinate: 40.712775,        longitude_coordinate: -74.005973,        ...      }    },    auth: {      loggedIn: true,      loggingIn: false,      ...    } ...  }

Example 3: definition destructuring react

class Attraction extends React.Component {  render() {    const {      auth,      auth: { token },      attraction: { id, url_name, name, image_url, average_rating }    } = this.props;return (      <div auth={auth} key={id}>        <Link token={token} to={`/attractions/${url_name}`} key={id}>          <img alt={name} src={image_url} />          <h1>{name}</h1>        </Link>        <StarRatings rating={average_rating} />      </div>    );  }}