Skip to content

Instantly share code, notes, and snippets.

@janzenz
Created March 13, 2017 07:33
Show Gist options
  • Save janzenz/3af510d31bdd1dcffee432dc08d97122 to your computer and use it in GitHub Desktop.
Save janzenz/3af510d31bdd1dcffee432dc08d97122 to your computer and use it in GitHub Desktop.
Sample Component
import React, { Component } from 'react';
class MyComponent extends Component {
static propTypes = {
}
render() {
return (
<div>This is My Component!</div>
);
}
}
export default MyComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment