Fix alignment in PureMixin

This commit is contained in:
khlieng 2015-05-19 23:18:24 +02:00
parent 17482ee253
commit ce72ec9c8c
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ module.exports = {
}
return !shallowEqual(this.props, nextProps) ||
!shallowEqual(this.state, nextState);
!shallowEqual(this.state, nextState);
}
};