Last week it was the time to return to meetups. I participated as a speaker showing a talk about CSS tips. It was really nice and I'm thinking in update the content to send the same subject to other meetups and conferences. Keep working!
Destructuring assignment is AMAZING!
const Component = (props) => {
const { name, quality } = props;
return(
<div>{ name } is { quality }</div>
)
}
or
const Component = ({ name, quality }) => <div>{ name } is { quality }</div>
"If you're not doing what you love, you're wasting your time."