/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-devtools-shared/src/devtools/ContextMenu/ContextMenuItem.js
38 строк
684 B
Ruslan Lesiutin
refactor[react-devtools]: rewrite context menus (#29049)
20 май 2024, 17:12
Не верифицирован
20 май 2024, 17:12
d14ce51
Код
Авторство
О чём код?
/** * 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. * * @flow */ import * as React from 'react'; import styles from './ContextMenuItem.css'; type Props = { children: React.Node, onClick: () => void, hide: () => void, }; export default function ContextMenuItem({ children, onClick, hide, }: Props): React.Node { const handleClick = () => { onClick(); hide(); }; return ( <div className={styles.ContextMenuItem} onClick={handleClick} onTouchEnd={handleClick}> {children} </div> ); }