| 1 | /** |
| 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | * |
| 4 | * This source code is licensed under the MIT license found in the |
| 5 | * LICENSE file in the root directory of this source tree. |
| 6 | * |
| 7 | * @flow |
| 8 | */ |
| 9 | |
| 10 | import * as React from 'react'; |
| 11 | import LoadingAnimation from 'react-devtools-shared/src/devtools/views/Components/LoadingAnimation'; |
| 12 | import styles from './shared.css'; |
| 13 | |
| 14 | export default function SearchingGitHubIssues(): React.Node { |
| 15 | return ( |
| 16 | <div className={styles.GitHubLinkRow}> |
| 17 | <LoadingAnimation className={styles.LoadingIcon} /> |
| 18 | Searching GitHub for reports of this error... |
| 19 | </div> |
| 20 | ); |
| 21 | } |