mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Convert VectorAuthPage to modern code style
This commit is contained in:
parent
1ec9763566
commit
aea2b1ebc9
@ -16,17 +16,13 @@ limitations under the License.
|
||||
|
||||
'use strict';
|
||||
|
||||
const React = require('react');
|
||||
import React from 'react';
|
||||
import sdk from 'matrix-react-sdk/lib/index';
|
||||
|
||||
module.exports = React.createClass({
|
||||
displayName: 'VectorAuthPage',
|
||||
export default class VectorAuthPage extends React.PureComponent {
|
||||
static replaces = 'AuthPage'
|
||||
|
||||
statics: {
|
||||
replaces: 'AuthPage',
|
||||
},
|
||||
|
||||
render: function() {
|
||||
render() {
|
||||
const AuthFooter = sdk.getComponent('auth.AuthFooter');
|
||||
|
||||
const pageStyle = {
|
||||
@ -66,5 +62,5 @@ module.exports = React.createClass({
|
||||
<AuthFooter />
|
||||
</div>
|
||||
);
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user