import React, { Component, PropTypes } from 'react';
import styles from './__COMPONENT_NAME__.less';

function __COMPONENT_NAME__(props) {
  return (
    <div className={styles.normal}>
      __COMPONENT_NAME__
    </div>
  );
}

__COMPONENT_NAME__.propTypes = {};

export default __COMPONENT_NAME__;
