mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-11 13:38:46 +00:00
* added a dark theme toggle button on Copyjobs next to refresh button and covered full feature * Fix formatting in Utils.test.ts * updated infor icon , error icon and text on jobs details page * rebased from master * updated the conflicts * updated the conflicts * fixed the test suit * fixed review comments * test fix --------- Co-authored-by: Sakshi Gupta <sakshig@microsoft.com>
9 lines
366 B
TypeScript
9 lines
366 B
TypeScript
import React from "react";
|
|
import LoadingIndicator_3Squares from "../../../images/LoadingIndicator_3Squares.gif";
|
|
|
|
export const PanelLoadingScreen: React.FunctionComponent = () => (
|
|
<div id="loadingScreen" className="dataExplorerLoaderContainer dataExplorerLoaderforcopyJobs">
|
|
<img className="dataExplorerLoader" src={LoadingIndicator_3Squares} />
|
|
</div>
|
|
);
|