Fixes to performance. Moved volume out to new component to optimize rerenders.

This commit is contained in:
Håvar Aambø Fosstveit
2019-04-04 00:03:57 +02:00
parent e84af94544
commit abca6645a9
16 changed files with 359 additions and 200 deletions
@@ -81,5 +81,17 @@ const mapDispatchToProps = (dispatch) =>
});
export default withSnackbar(
connect(mapStateToProps, mapDispatchToProps)(Notifications)
connect(
mapStateToProps,
mapDispatchToProps,
null,
{
areStatesEqual : (next, prev) =>
{
return (
prev.notifications === next.notifications
);
}
}
)(Notifications)
);