Skip to content

Instantly share code, notes, and snippets.

@billyct
Created December 25, 2015 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billyct/01476e0b2b8836660fc3 to your computer and use it in GitHub Desktop.
Save billyct/01476e0b2b8836660fc3 to your computer and use it in GitHub Desktop.
es6 react component live template for webform
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