Summary: Originally we planned to move the IDE inline in the row but this is hard to do well, especially with the horizontal scroll as well as the extra buttons for biggrep, codehub, AS and vscode. Context menu is still very natural so lets try this Reviewed By: lblasa Differential Revision: D47210289 fbshipit-source-id: 339508c820915298161bf95fd1c3cea60b800746
21 lines
426 B
TypeScript
21 lines
426 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 '../../types';
|
|
|
|
export function IDEContextMenuItems(_: {node: UINode}) {
|
|
return <></>;
|
|
}
|
|
|
|
export function BigGrepContextMenuItems(_: {node: UINode}) {
|
|
return <></>;
|
|
}
|