Skip to content

Commit

Permalink
feat: DevTools - Prettier fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
hristo-kanchev committed Feb 24, 2020
1 parent fc02184 commit 0c2ad23
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -170,7 +170,9 @@ function createResizeReducer(wrapperRef) {
function ComponentResizer({children}): {|children: Function|} {
const componentsWrapperRef = useRef<HTMLDivElement>(null);
const resizeElementRef = useRef<HTMLElement>(null);
const [state, dispatch, ACTION_TYPES] = createResizeReducer(componentsWrapperRef);
const [state, dispatch, ACTION_TYPES] = createResizeReducer(
componentsWrapperRef,
);

const onResizeStart = () =>
dispatch({type: ACTION_TYPES.SET_IS_RESIZING, payload: true});
Expand Down

0 comments on commit 0c2ad23

Please sign in to comment.