Files
flipper/desktop/plugins/public/ui-debugger/components/fb-stubs/IDEContextMenu.tsx
Luke De Feo f181551ce6 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
2023-07-21 07:17:31 -07:00

23 lines
496 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 {UINode} from '../../ClientTypes';
export async function prefetchSourceFileLocation(_: UINode) {}
export function IDEContextMenuItems(_: {node: UINode}) {
return <></>;
}
export function BigGrepContextMenuItems(_: {node: UINode}) {
return <></>;
}