Skip to content

Instantly share code, notes, and snippets.

@matheusml
Created June 21, 2017 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matheusml/22bcb152e0d2a1b485a426f76617df16 to your computer and use it in GitHub Desktop.
Save matheusml/22bcb152e0d2a1b485a426f76617df16 to your computer and use it in GitHub Desktop.
import React from 'react';
export default function HelloWithProps(props) {
return (
<h1>Hello {props.name}</h1>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment