React Components Template
"use strict";/** * * @author xgqfrms * @license MIT * @copyright xgqfrms * @created 2018.01.01 * @modified 2018.01.01 * * @description React Components Template * @augments * @example * */import React, { Component } from 'react';import PropTypes from 'prop-types';class APP extends Component { constructor(props) { super(props); } componentWillMount() { } componentDidMount() { } componentWillReceiveProps(nextProps) { } shouldComponentUpdate(nextProps, nextState) { } componentWillUpdate(nextProps, nextState) { } componentDidUpdate(prevProps, prevState) { } componentWillUnmount() { } render() { return (); }}APP.propTypes = { title: PropTypes.string,};export default APP;Hello World!
React Components Template
https://codesandbox.io/