Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.1 KB

21.md

File metadata and controls

41 lines (25 loc) · 1.1 KB

📌 21

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!

:octocat:

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>

💬 Quotes

"If you're not doing what you love, you're wasting your time."

🔗 Links

💀 Currently


🏠 back home