This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-02 17:04:16 -07:00
|
|
|
import React from 'react';
|
2017-04-23 15:38:37 -07:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
class Warning extends React.PureComponent {
|
|
|
|
|
2017-05-12 05:44:10 -07:00
|
|
|
static propTypes = {
|
2017-05-20 08:31:47 -07:00
|
|
|
message: PropTypes.node.isRequired,
|
2017-05-12 05:44:10 -07:00
|
|
|
};
|
2017-04-23 15:38:37 -07:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { message } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='compose-form__warning'>
|
|
|
|
{message}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Warning;
|