Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Hypnosphi committed Sep 16, 2017
1 parent ccb83c7 commit b786d61
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/ui/src/modules/ui/components/layout/usplit.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,13 @@ const spanStyle = {
}),
};

//eslint-disable-next-line
const USplit = ({ shift, split }) => (
<div style={wrapStyle[split](shift)}>
<span style={spanStyle[split]()} />
</div>
);

USplit.PropTypes = {
USplit.propTypes = {
shift: PropTypes.number,
split: PropTypes.oneOf(['vertical', 'horizontal']),
};
Expand Down

0 comments on commit b786d61

Please sign in to comment.