Skip to content

Instantly share code, notes, and snippets.

@unsign3d
Created September 7, 2018 09:10
Show Gist options
  • Save unsign3d/3e9cb98d86694fbff27aa290860693ae to your computer and use it in GitHub Desktop.
Save unsign3d/3e9cb98d86694fbff27aa290860693ae to your computer and use it in GitHub Desktop.
import React from 'react';
const Cat = ({name, family}) => (
<div>
<p>I'm a cat and my name is {name} <br /> and my family is {family}</p>
</div>
)
export default Cat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment