mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
41 lines
1004 B
JavaScript
41 lines
1004 B
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {FormattedMessage} from 'react-intl';
|
|
|
|
export default class Banner extends React.Component {
|
|
render() {
|
|
let title = (
|
|
<FormattedMessage
|
|
id='admin.banner.heading'
|
|
defaultMessage='Note:'
|
|
/>
|
|
);
|
|
|
|
if (this.props.title) {
|
|
title = this.props.title;
|
|
}
|
|
|
|
return (
|
|
<div className='banner'>
|
|
<div className='banner__content'>
|
|
<h4 className='banner__heading'>
|
|
{title}
|
|
</h4>
|
|
<p>
|
|
{this.props.description}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
Banner.defaultProps = {
|
|
};
|
|
Banner.propTypes = {
|
|
title: React.PropTypes.node,
|
|
description: React.PropTypes.node.isRequired
|
|
};
|