waveterm/frontend/app/element/quickelems.tsx

15 lines
284 B
TypeScript
Raw Normal View History

2024-05-14 21:29:41 +02:00
// 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 };