Files
flipper/desktop/plugins/public/ui-debugger/components/fb-stubs/IDEContextMenu.tsx
Luke De Feo 87a1b657c3 UID Refactor 3/n UINode -> ClientNode
Summary:
UINode has never been a good name, we have 3 versions of a node.
ClientNode Previously UINode (the raw data from the client)
NestedNode (for the visualiser)
TreeNode (extends ClientNode and adds stuff specific to the tree like indentation and expanded states)

Arguablely we dont need nested node but that is another story

Reviewed By: elboman

Differential Revision: D47547529

fbshipit-source-id: 9a3b119d1230ea7b6734e7a3270c28287b04faf1
2023-07-21 07:17:31 -07:00

23 lines
512 B
TypeScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
import React from 'react';
import {ClientNode} from '../../ClientTypes';
export async function prefetchSourceFileLocation(_: ClientNode) {}
export function IDEContextMenuItems(_: {node: ClientNode}) {
return <></>;
}
export function BigGrepContextMenuItems(_: {node: ClientNode}) {
return <></>;
}