Skip to content

Instantly share code, notes, and snippets.

@velopert
Last active January 15, 2017 14:40
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 velopert/3dac661dd8f99cf2d0d2a844a1e312c9 to your computer and use it in GitHub Desktop.
Save velopert/3dac661dd8f99cf2d0d2a844a1e312c9 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
class Hello extends React.Component {
render() {
return (
<div>Hello {this.props.name}</div>
);
}
}
export default Hello;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment