Prevent excessive re-rendering

pull/10616/head
Alex P 2018-04-10 16:12:46 -07:00
parent 99f5129447
commit 10224df176
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import React, {Component} from 'react'
import React, {PureComponent} from 'react'
import PropTypes from 'prop-types'
import {connect} from 'react-redux'
import {bindActionCreators} from 'redux'
@ -8,7 +8,7 @@ import {notify as notifyAction} from 'shared/actions/notifications'
import UsersTable from 'src/admin/components/chronograf/UsersTable'
class UsersPage extends Component {
class UsersPage extends PureComponent {
constructor(props) {
super(props)