mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 11:35:13 +00:00
20 lines
348 B
JavaScript
20 lines
348 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export default class Warning extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
message: PropTypes.node.isRequired,
|
|
};
|
|
|
|
render () {
|
|
const { message } = this.props;
|
|
|
|
return (
|
|
<div className='compose-form__warning'>
|
|
{message}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|