Fixed circular dependency warnings
Summary: Nobody moves the hackathon! Fixed some circular deps warnings while waiting for another Diff to land Reviewed By: priteshrnandgaonkar Differential Revision: D18749645 fbshipit-source-id: 225fbea428dca02f0f4c920ee47b4ece3c3e370b
This commit is contained in:
committed by
Facebook Github Bot
parent
749228674f
commit
2bee9ec9e7
@@ -17,9 +17,8 @@ import {
|
||||
Checkbox,
|
||||
colors,
|
||||
View,
|
||||
} from 'flipper';
|
||||
} from '../ui';
|
||||
import React, {Component} from 'react';
|
||||
import {ReactReduxContext} from 'react-redux';
|
||||
|
||||
export type SelectionType = 'multiple' | 'single';
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
import React, {PureComponent} from 'react';
|
||||
import {FlexColumn, Text, styled} from 'flipper';
|
||||
import {FlexColumn, Text, styled} from '../ui';
|
||||
|
||||
type Props = {
|
||||
errors: Array<Error>;
|
||||
|
||||
@@ -22,7 +22,7 @@ import {
|
||||
import ShareSheetErrorList from './ShareSheetErrorList';
|
||||
import ShareSheetPendingDialog from './ShareSheetPendingDialog';
|
||||
import {ReactReduxContext} from 'react-redux';
|
||||
import {store} from '../init';
|
||||
import {store} from '../store';
|
||||
|
||||
const Container = styled(FlexColumn)({
|
||||
padding: 20,
|
||||
|
||||
@@ -18,7 +18,7 @@ import {
|
||||
} from 'flipper';
|
||||
import React, {Component} from 'react';
|
||||
import {ReactReduxContext} from 'react-redux';
|
||||
import {store} from '../init';
|
||||
import {store} from '../store';
|
||||
import {
|
||||
setExportStatusComponent,
|
||||
unsetShare,
|
||||
|
||||
@@ -16,7 +16,7 @@ import {
|
||||
FlexRow,
|
||||
Text,
|
||||
LoadingIndicator,
|
||||
} from 'flipper';
|
||||
} from '../ui';
|
||||
import React from 'react';
|
||||
|
||||
const Container = styled(FlexColumn)({
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
import React, {Component} from 'react';
|
||||
import BaseDevice from '../devices/BaseDevice';
|
||||
import {Button, Glyph, colors} from 'flipper';
|
||||
import {Button, Glyph, colors} from '../ui';
|
||||
import path from 'path';
|
||||
import os from 'os';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user