Skip to content

Instantly share code, notes, and snippets.

@Kosmin
Last active March 7, 2017 22:35
Show Gist options
  • Save Kosmin/7efd683aeada85c6722ddf0d4acfd36c to your computer and use it in GitHub Desktop.
Save Kosmin/7efd683aeada85c6722ddf0d4acfd36c to your computer and use it in GitHub Desktop.
React Pure Function Component Example
import React from 'react';
const Car = ({details}) => {
console.log('rendering Car component');
return (
<div>
{`Your object: ${details.name} ${details.color}`}
</div>
);
}
export default Car;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment