UID refactor 2/n Split types into client and desktop types

Summary: This file was getting overwelhming, and this seemed like a reasonable way to split it

Reviewed By: elboman

Differential Revision: D47547532

fbshipit-source-id: ab2bfa22daabbed13ec1445da0cf8ba88bda12d7
This commit is contained in:
Luke De Feo
2023-07-21 07:17:31 -07:00
committed by Facebook GitHub Bot
parent 2cc0ca0167
commit f181551ce6
27 changed files with 149 additions and 137 deletions

View File

@@ -8,14 +8,8 @@
*/
import React, {useEffect, useMemo, useRef} from 'react';
import {
Bounds,
Coordinate,
Id,
NestedNode,
OnSelectNode,
UINode,
} from '../types';
import {Bounds, Coordinate, Id, UINode} from '../ClientTypes';
import {NestedNode, OnSelectNode} from '../DesktopTypes';
import {produce, styled, theme, usePlugin, useValue} from 'flipper-plugin';
import {plugin} from '../index';