Convert VectorAuthHeaderLogo to modern code style

pull/8528/head
J. Ryan Stinnett 2019-02-11 16:14:34 +00:00
parent 86ced4cdad
commit 18d898cc1f
1 changed files with 9 additions and 11 deletions

View File

@ -22,20 +22,18 @@ import PropTypes from 'prop-types';
const LOGO_URI = "themes/riot/img/logos/riot-im-logo-black-text.svg"; const LOGO_URI = "themes/riot/img/logos/riot-im-logo-black-text.svg";
module.exports = React.createClass({ export default class VectorAuthHeaderLogo extends React.PureComponent {
displayName: 'VectorAuthHeaderLogo', static replaces = 'AuthHeaderLogo'
statics: {
replaces: 'AuthHeaderLogo',
},
propTypes: {
icon: PropTypes.string,
},
render: function() { static propTypes = {
icon: PropTypes.string,
}
render() {
return ( return (
<div className="mx_AuthHeaderLogo"> <div className="mx_AuthHeaderLogo">
<img src={LOGO_URI} alt="Riot" /> <img src={LOGO_URI} alt="Riot" />
</div> </div>
); );
}, }
}); }