/**
 * @author ${|author|}
 * @overview generated by ghoti-cli
 * @fileoverview Component set ${|component|}
 */

import * as React from 'react';

import Config from '../../config/config';

export interface IProps {

}

export interface IState {

}

class ${|component|} extends React.Component<IProps, IState> {
    public constructor(props) {
        super(props);
    }

    public render() {
        return (<div>
            <span>Hello, ${|component|}!</span>
        </div>);
    }
}

export default ${|component|};
