24 lines
345 B
JavaScript
24 lines
345 B
JavaScript
|
|
// internal
|
|
import BasePage from "../base.js";
|
|
// external
|
|
|
|
|
|
export default class PageHome extends BasePage {
|
|
static hash = hashPageHome;
|
|
|
|
constructor(router) {
|
|
super(router);
|
|
}
|
|
|
|
initialize() {
|
|
this.sharedInitialize();
|
|
this.hookupButtonsNavContact();
|
|
}
|
|
|
|
leave() {
|
|
super.leave();
|
|
}
|
|
}
|
|
|