/
ashipov
/
react
Обзор
Документация
Войти
/
ashipov
/
react
Код
Запросы
0
Задачи 2.0
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
packages/react-devtools-shared/src/devtools/views/ButtonLabel.js
20 строк
457 B
Sebastian Markbåge
[DevTools] Add a Code Editor Sidebar Pane in the Chrome Sources Tab (#33968)
23 июл 2025, 17:28
Не верифицирован
23 июл 2025, 17:28
edac0dd
Код
Авторство
О чём код?
/** * 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 './ButtonLabel.css'; type Props = { children: React$Node, }; export default function ButtonLabel({children}: Props): React.Node { return <span className={styles.ButtonLabel}>{children}</span>; }