Skip to content

Instantly share code, notes, and snippets.

@framerate
Created June 22, 2015 03:00
Show Gist options
  • Save framerate/b1e54089092465021efa to your computer and use it in GitHub Desktop.
Save framerate/b1e54089092465021efa to your computer and use it in GitHub Desktop.
import React from 'react';
export default class Whatever extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div>
<h1>Hello World</h1>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment