auth0-extensions/auth0-sso-dashboard-extension

View on GitHub
client/components/Dashboard/TableActionCell.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Component } from 'react';

class TableActionCell extends Component {
  shouldComponentUpdate(nextProps) {
    return nextProps.children !== this.props.children;
  }

  render() {
    return <td>
        { this.props.children }
      </td>;
  }
}

export default TableActionCell;