Skip to content

Instantly share code, notes, and snippets.

@rfinni
Created November 11, 2016 02:46
Show Gist options
  • Select an option

  • Save rfinni/5bdbc1f3dd2543c7a8f9fff1ccafb29d to your computer and use it in GitHub Desktop.

Select an option

Save rfinni/5bdbc1f3dd2543c7a8f9fff1ccafb29d to your computer and use it in GitHub Desktop.
a react component skeleton
import React, { Component } from 'react';
export default class MyComponent extends Component {
render() {
return (
<div>
component
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment