mapcomplete/UI/Base/Loading.ts

7 lines
183 B
TypeScript
Raw Normal View History

2021-06-28 18:06:54 +02:00
import {FixedUiElement} from "./FixedUiElement";
export default class Loading extends FixedUiElement {
constructor() {
super("Loading..."); // TODO to be improved
}
}