MapComplete/UI/Base/Loading.ts
2021-06-28 18:06:54 +02:00

7 lines
No EOL
183 B
TypeScript

import {FixedUiElement} from "./FixedUiElement";
export default class Loading extends FixedUiElement {
constructor() {
super("Loading..."); // TODO to be improved
}
}