7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
|
import {FixedUiElement} from "./FixedUiElement";
|
||
|
|
||
|
export default class Loading extends FixedUiElement {
|
||
|
constructor() {
|
||
|
super("Loading..."); // TODO to be improved
|
||
|
}
|
||
|
}
|