Skip to content

Commit

Permalink
Regrouping of component dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffersonrabb committed Jan 18, 2019
1 parent ded1017 commit 97fcd04
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions packages/components/src/focal-point-picker/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
/**
* External dependencies
*/
import classnames from 'classnames';

/**
* WordPress dependencies
*/
import { Component, createRef } from '@wordpress/element';
import { withInstanceId, compose } from '@wordpress/compose';
import BaseControl from '../base-control/';

/**
* Internal dependencies
*/
import BaseControl from '../base-control';
import withFocusOutside from '../higher-order/with-focus-outside';
import classnames from 'classnames';

export class FocalPointPicker extends Component {
constructor() {
Expand Down

0 comments on commit 97fcd04

Please sign in to comment.