/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-devtools-shared/src/devtools/views/Editor/EditorSettings.js
29 строк
632 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 './EditorSettings.css'; import CodeEditorOptions from '../Settings/CodeEditorOptions'; type Props = {}; function EditorSettings(_: Props): React.Node { return ( <div className={styles.EditorSettings}> <label> <div className={styles.EditorLabel}>Editor</div> <CodeEditorOptions /> </label> </div> ); } export default EditorSettings;