waveterm/frontend/app/element/quickelems.tsx
2024-05-14 12:29:41 -07:00

15 lines
284 B
TypeScript

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
import "./quickelems.less";
function CenteredLoadingDiv() {
return (
<div className="centered-loading">
<div>Loading...</div>
</div>
);
}
export { CenteredLoadingDiv };