Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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