Last active
August 20, 2017 08:29
-
-
Save Bizunow/c24d060b3a384964f1336c088843de87 to your computer and use it in GitHub Desktop.
[React class template] Simple react class #react #js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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