mapcomplete/UI/Base/Loading.ts

7 lines
No EOL
183 B
TypeScript

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