Created
December 25, 2015 09:31
-
-
Save billyct/01476e0b2b8836660fc3 to your computer and use it in GitHub Desktop.
es6 react component live template for webform
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, PropTypes} from 'react'; | |
import './COMPONENT.scss'; | |
class COMPONENT extends Component { | |
render() { | |
const block = 'COMPONENT'; | |
return ( | |
<div className={`${block}`}></div> | |
); | |
} | |
} | |
export default COMPONENT; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment