From 751a9ef3a12c952fe179f256d854d0c4aa37e28e Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 4 Oct 2017 22:49:07 +0200 Subject: Apply prettier to codebase --- .../sidebars/topology/machine/BackToRackContainer.js | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'src/containers/app/sidebars/topology/machine/BackToRackContainer.js') diff --git a/src/containers/app/sidebars/topology/machine/BackToRackContainer.js b/src/containers/app/sidebars/topology/machine/BackToRackContainer.js index f0ac9220..885c533d 100644 --- a/src/containers/app/sidebars/topology/machine/BackToRackContainer.js +++ b/src/containers/app/sidebars/topology/machine/BackToRackContainer.js @@ -1,16 +1,15 @@ -import {connect} from "react-redux"; -import {goDownOneInteractionLevel} from "../../../../../actions/interaction-level"; +import { connect } from "react-redux"; +import { goDownOneInteractionLevel } from "../../../../../actions/interaction-level"; import BackToRackComponent from "../../../../../components/app/sidebars/topology/machine/BackToRackComponent"; const mapDispatchToProps = dispatch => { - return { - onClick: () => dispatch(goDownOneInteractionLevel()), - }; + return { + onClick: () => dispatch(goDownOneInteractionLevel()) + }; }; -const BackToRackContainer = connect( - undefined, - mapDispatchToProps -)(BackToRackComponent); +const BackToRackContainer = connect(undefined, mapDispatchToProps)( + BackToRackComponent +); export default BackToRackContainer; -- cgit v1.2.3