fix linting for button component

This commit is contained in:
Anna Melzer 2018-10-31 17:31:23 +01:00
parent aee048e726
commit 3ca5f7a2e9

View file

@ -6,4 +6,7 @@ const perform = dispatch => ({
doNavigate: (path, params) => dispatch(doNavigate(path, params)),
});
export default connect(null, perform)(Button);
export default connect(
null,
perform
)(Button);