1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Mark KeyBackupPanel as a pure component

KeyBackupPanel depends only on its own state and its children are pure, so it
can be pure as well. This avoids some unnecessary re-renders.
This commit is contained in:
J. Ryan Stinnett
2019-01-08 13:57:22 -06:00
parent 2bfe6e7500
commit 7dbc970347

View File

@@ -21,7 +21,7 @@ import MatrixClientPeg from '../../../MatrixClientPeg';
import { _t } from '../../../languageHandler'; import { _t } from '../../../languageHandler';
import Modal from '../../../Modal'; import Modal from '../../../Modal';
export default class KeyBackupPanel extends React.Component { export default class KeyBackupPanel extends React.PureComponent {
constructor(props) { constructor(props) {
super(props); super(props);