13 lines
246 B
TypeScript
Raw Permalink Normal View History

2020-04-26 19:52:11 +12:00
import Component from "../Component";
import state from "../state";
export default class HomePage extends Component {
constructor() {
super();
this.$area.html("home page (logged in with session key " + state.api.sessionKey + ")");
}
}