import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; class CustomizeBehaviorOption extends React.PureComponent { render() { return (

{/* render layout description */} {this.props.children}
); } } CustomizeBehaviorOption.propTypes = { t: PropTypes.func.isRequired, // i18next behaviorType: PropTypes.string.isRequired, labelHtml: PropTypes.string.isRequired, isSelected: PropTypes.bool.isRequired, onSelected: PropTypes.func.isRequired, children: PropTypes.object.isRequired, }; export default withTranslation()(CustomizeBehaviorOption);