/
ashipov
/
react
Обзор
Документация
Войти
/
ashipov
/
react
Код
Запросы
0
Задачи 2.0
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
packages/react-devtools-shared/src/devtools/views/Profiler/NoCommitData.js
25 строк
642 B
Andrew Clark
[Codemod] Update copyright header to Meta (#25315)
18 окт 2022, 18:19
Не верифицирован
18 окт 2022, 18:19
9cdf8a9
Код
Авторство
О чём код?
/** * 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 './NoCommitData.css'; export default function NoCommitData(_: {}): React.Node { return ( <div className={styles.NoCommitData}> <div className={styles.Header}> There is no data matching the current filter criteria. </div> <div className={styles.FilterMessage}> Try adjusting the commit filter in Profiler settings. </div> </div> ); }