Skip to content

Commit

Permalink
fix(select): edit * imports (#874)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Goo committed May 30, 2019
1 parent db7f0ce commit 33eb962
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/select/BaseSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import * as React from 'react';
import React from 'react';
import NativeSelect, {
NativeSelectProps, // eslint-disable-line @typescript-eslint/no-unused-vars
} from './NativeSelect';
Expand Down
2 changes: 1 addition & 1 deletion packages/select/EnhancedSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import * as React from 'react';
import React from 'react';
import {MDCMenuSurfaceFoundation} from '@material/menu-surface/foundation';
import Menu, {MenuList} from '@material/react-menu';
import {OptionProps} from './Option'; // eslint-disable-line @typescript-eslint/no-unused-vars
Expand Down
4 changes: 2 additions & 2 deletions packages/select/Option.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import * as React from 'react';
import {MenuListItem, MenuListItemProps} from '@material/react-menu'; // eslint-disable-line @typescript-eslint/no-unused-vars
import React from 'react';
import {MenuListItem, MenuListItemProps} from '@material/react-menu'; // eslint-disable-line no-unused-vars

export type OptionProps<T extends HTMLElement = HTMLElement> = BaseOptionProps &
(T extends HTMLOptionElement
Expand Down
2 changes: 1 addition & 1 deletion packages/select/helper-text/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import * as React from 'react';
import React from 'react';
import classnames from 'classnames';
import {MDCSelectHelperTextAdapter} from '@material/select/helper-text/adapter';
import {MDCSelectHelperTextFoundation} from '@material/select/helper-text/foundation';
Expand Down

0 comments on commit 33eb962

Please sign in to comment.