2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-23 18:38:37 -04:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
class Warning extends React.PureComponent {
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
message: PropTypes.node.isRequired
|
|
|
|
};
|
2017-04-23 18:38:37 -04:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { message } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='compose-form__warning'>
|
|
|
|
{message}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Warning;
|