UNPKG

generator-itworxhub

Version:

Tool to help the front-end developer at ITWORX HUB Team to save his time by scaffolding the repetitive tasks

19 lines (17 loc) 439 B
import React from 'react'; <% if (hasStyleSheet) { %> import styles from './styles.scss'; <% } %> export default class <%= componentName %> extends React.Component{ state = {} componentWillMount(){ } componentDidMount(){ } componentWillReceiveProps(nextProps){ } componentWillUnmount() { } render(){ return ( <div className='<%= componentName %>Container'> </div> ) } }