Skip to content

Instantly share code, notes, and snippets.

@Bizunow
Last active August 20, 2017 08:29
Show Gist options
  • Save Bizunow/c24d060b3a384964f1336c088843de87 to your computer and use it in GitHub Desktop.
Save Bizunow/c24d060b3a384964f1336c088843de87 to your computer and use it in GitHub Desktop.
[React class template] Simple react class #react #js
import React, { Component } from 'react';
class ObjectName extends Component {
render() {
return (
<div className="ObjectName">
Hello, World!
</div>
);
}
}
export default ObjectName;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment