Convert VectorAuthPage to modern code style

This commit is contained in:
J. Ryan Stinnett 2019-02-11 15:51:16 +00:00
parent 1ec9763566
commit aea2b1ebc9

View File

@ -16,17 +16,13 @@ limitations under the License.
'use strict'; 'use strict';
const React = require('react'); import React from 'react';
import sdk from 'matrix-react-sdk/lib/index'; import sdk from 'matrix-react-sdk/lib/index';
module.exports = React.createClass({ export default class VectorAuthPage extends React.PureComponent {
displayName: 'VectorAuthPage', static replaces = 'AuthPage'
statics: { render() {
replaces: 'AuthPage',
},
render: function() {
const AuthFooter = sdk.getComponent('auth.AuthFooter'); const AuthFooter = sdk.getComponent('auth.AuthFooter');
const pageStyle = { const pageStyle = {
@ -66,5 +62,5 @@ module.exports = React.createClass({
<AuthFooter /> <AuthFooter />
</div> </div>
); );
}, }
}); }