Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Last active March 28, 2017 20:56
Show Gist options
  • Select an option

  • Save viniciusdacal/b9109e1096fee4b50b806f701ec38fff to your computer and use it in GitHub Desktop.

Select an option

Save viniciusdacal/b9109e1096fee4b50b806f701ec38fff to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDom from 'react-dom';
function Welcome({ name }) {
return (
<h1>Hello, {name}</h1>
);
}
const strangerName = 'Stranger';
ReactDOM.render(
<Welcome name={strangerName} />,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment