2019-08-28 01:54:01 +08:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
|
*
|
|
|
|
|
* @flow
|
|
|
|
|
*/
|
2019-03-17 05:06:41 +08:00
|
|
|
|
2020-02-22 11:45:20 +08:00
|
|
|
import * as React from 'react';
|
2019-03-17 05:06:41 +08:00
|
|
|
|
|
|
|
|
import styles from './NoCommitData.css';
|
|
|
|
|
|
2019-03-26 01:18:38 +08:00
|
|
|
export default function NoCommitData(_: {||}) {
|
2019-05-22 21:40:04 +08:00
|
|
|
return (
|
|
|
|
|
<div className={styles.NoCommitData}>
|
|
|
|
|
<div className={styles.Header}>
|
|
|
|
|
There is no data matching the current filter criteria.
|
2019-03-26 01:18:38 +08:00
|
|
|
</div>
|
2019-05-22 21:40:04 +08:00
|
|
|
<div className={styles.FilterMessage}>
|
2019-06-11 05:57:26 +08:00
|
|
|
Try adjusting the commit filter in Profiler settings.
|
2019-03-26 01:18:38 +08:00
|
|
|
</div>
|
2019-05-22 21:40:04 +08:00
|
|
|
</div>
|
|
|
|
|
);
|
2019-03-17 05:06:41 +08:00
|
|
|
}
|