UIDRefactor 6/n Move tree into folder
Summary: preparing to split this up a bit Reviewed By: lblasa Differential Revision: D47548840 fbshipit-source-id: 907b9cd6a7a044e4aad97f9755fd9b43b81768f1
This commit is contained in:
committed by
Facebook GitHub Bot
parent
efb23be4cf
commit
2655ea8523
@@ -25,7 +25,7 @@ import {Inspector} from './sidebar/Inspector';
|
|||||||
import {Controls} from './Controls';
|
import {Controls} from './Controls';
|
||||||
import {Button, Spin} from 'antd';
|
import {Button, Spin} from 'antd';
|
||||||
import {QueryClientProvider} from 'react-query';
|
import {QueryClientProvider} from 'react-query';
|
||||||
import {Tree2} from './Tree';
|
import {Tree2} from './tree/Tree';
|
||||||
import {StreamInterceptorErrorView} from './StreamInterceptorErrorView';
|
import {StreamInterceptorErrorView} from './StreamInterceptorErrorView';
|
||||||
import {queryClient} from '../utils/reactQuery';
|
import {queryClient} from '../utils/reactQuery';
|
||||||
import {FrameworkEventsTable} from './FrameworkEventsTable';
|
import {FrameworkEventsTable} from './FrameworkEventsTable';
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ import {
|
|||||||
FrameworkEventType,
|
FrameworkEventType,
|
||||||
Id,
|
Id,
|
||||||
ClientNode,
|
ClientNode,
|
||||||
} from '../ClientTypes';
|
} from '../../ClientTypes';
|
||||||
import {OnSelectNode, ViewMode} from '../DesktopTypes';
|
import {OnSelectNode, ViewMode} from '../../DesktopTypes';
|
||||||
import React, {
|
import React, {
|
||||||
ReactNode,
|
ReactNode,
|
||||||
Ref,
|
Ref,
|
||||||
@@ -34,19 +34,19 @@ import {
|
|||||||
usePlugin,
|
usePlugin,
|
||||||
useValue,
|
useValue,
|
||||||
} from 'flipper-plugin';
|
} from 'flipper-plugin';
|
||||||
import {plugin} from '../index';
|
import {plugin} from '../../index';
|
||||||
import {Glyph} from 'flipper';
|
import {Glyph} from 'flipper';
|
||||||
import {head, last} from 'lodash';
|
import {head, last} from 'lodash';
|
||||||
import {reverse} from 'lodash/fp';
|
import {reverse} from 'lodash/fp';
|
||||||
import {Badge, Dropdown, Menu, Typography} from 'antd';
|
import {Badge, Dropdown, Menu, Typography} from 'antd';
|
||||||
import {UIDebuggerMenuItem} from './util/UIDebuggerMenuItem';
|
import {UIDebuggerMenuItem} from '../util/UIDebuggerMenuItem';
|
||||||
import {tracker} from '../utils/tracker';
|
import {tracker} from '../../utils/tracker';
|
||||||
|
|
||||||
import {useVirtualizer, Virtualizer} from '@tanstack/react-virtual';
|
import {useVirtualizer, Virtualizer} from '@tanstack/react-virtual';
|
||||||
import {
|
import {
|
||||||
BigGrepContextMenuItems,
|
BigGrepContextMenuItems,
|
||||||
IDEContextMenuItems,
|
IDEContextMenuItems,
|
||||||
} from './fb-stubs/IDEContextMenu';
|
} from '../fb-stubs/IDEContextMenu';
|
||||||
import {
|
import {
|
||||||
CopyOutlined,
|
CopyOutlined,
|
||||||
FullscreenExitOutlined,
|
FullscreenExitOutlined,
|
||||||
Reference in New Issue
Block a user