mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-03-12 04:47:39 +00:00
* Add teaching bubbles after creating sample DB * Add teaching bubble while creating sample container * Remove test code * Update tests and always show teaching bubbles in add collection panel when launched from quick start * Fix snapshot
9 lines
368 B
TypeScript
9 lines
368 B
TypeScript
import React from "react";
|
|
import LoadingIndicator_3Squares from "../../../images/LoadingIndicator_3Squares.gif";
|
|
|
|
export const PanelLoadingScreen: React.FunctionComponent = () => (
|
|
<div id="loadingScreen" className="dataExplorerLoaderContainer dataExplorerPaneLoaderContainer">
|
|
<img className="dataExplorerLoader" src={LoadingIndicator_3Squares} />
|
|
</div>
|
|
);
|