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:
Luke De Feo
2023-07-21 07:17:31 -07:00
committed by Facebook GitHub Bot
parent efb23be4cf
commit 2655ea8523
2 changed files with 7 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ import {Inspector} from './sidebar/Inspector';
import {Controls} from './Controls';
import {Button, Spin} from 'antd';
import {QueryClientProvider} from 'react-query';
import {Tree2} from './Tree';
import {Tree2} from './tree/Tree';
import {StreamInterceptorErrorView} from './StreamInterceptorErrorView';
import {queryClient} from '../utils/reactQuery';
import {FrameworkEventsTable} from './FrameworkEventsTable';

View File

@@ -12,8 +12,8 @@ import {
FrameworkEventType,
Id,
ClientNode,
} from '../ClientTypes';
import {OnSelectNode, ViewMode} from '../DesktopTypes';
} from '../../ClientTypes';
import {OnSelectNode, ViewMode} from '../../DesktopTypes';
import React, {
ReactNode,
Ref,
@@ -34,19 +34,19 @@ import {
usePlugin,
useValue,
} from 'flipper-plugin';
import {plugin} from '../index';
import {plugin} from '../../index';
import {Glyph} from 'flipper';
import {head, last} from 'lodash';
import {reverse} from 'lodash/fp';
import {Badge, Dropdown, Menu, Typography} from 'antd';
import {UIDebuggerMenuItem} from './util/UIDebuggerMenuItem';
import {tracker} from '../utils/tracker';
import {UIDebuggerMenuItem} from '../util/UIDebuggerMenuItem';
import {tracker} from '../../utils/tracker';
import {useVirtualizer, Virtualizer} from '@tanstack/react-virtual';
import {
BigGrepContextMenuItems,
IDEContextMenuItems,
} from './fb-stubs/IDEContextMenu';
} from '../fb-stubs/IDEContextMenu';
import {
CopyOutlined,
FullscreenExitOutlined,