Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/PivotTableUI.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Draggable from 'react-draggable';
/* eslint-disable react/prop-types */
// eslint can't see inherited propTypes!

class DraggableAttribute extends React.Component {
export class DraggableAttribute extends React.Component {
constructor(props) {
super(props);
this.state = {open: false, top: 0, left: 0, filterText: ''};
Expand Down Expand Up @@ -187,7 +187,7 @@ DraggableAttribute.propTypes = {
zIndex: PropTypes.number,
};

class Dropdown extends React.PureComponent {
export class Dropdown extends React.PureComponent {
render() {
return (
<div className="pvtDropdown" style={{zIndex: this.props.zIndex}}>
Expand Down