Feat: Multiplayer sessions added using CRUD database.
This commit is contained in:
19
static/js/pages/mixin_table.js
Normal file
19
static/js/pages/mixin_table.js
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
import MixinPage from "./mixin.js";
|
||||
|
||||
export default class TableMixinPage extends MixinPage {
|
||||
constructor(pageCurrent) {
|
||||
super(pageCurrent);
|
||||
}
|
||||
initialize() {
|
||||
super.initialize();
|
||||
this.hookupFilters();
|
||||
this.hookupTable();
|
||||
}
|
||||
hookupFilters() {
|
||||
// Implement filter-specific functionality here
|
||||
}
|
||||
hookupTable() {
|
||||
// Implement table-specific functionality here
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user