Skip to content

Instantly share code, notes, and snippets.

@mathieulesniak
Created October 2, 2016 14:45
Show Gist options
  • Save mathieulesniak/b0ececc6c3c4b14847f36684e76db24e to your computer and use it in GitHub Desktop.
Save mathieulesniak/b0ececc6c3c4b14847f36684e76db24e to your computer and use it in GitHub Desktop.
import React from 'react';
class HelloWorld extends React.Component {
render() {
return <h1>Hello {this.props.name} !</h1>;
}
}
export default HelloWorld;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment