Add manifest.json, icons and install button, flatten client/src
This commit is contained in:
parent
a219e689c1
commit
474afda9c2
105 changed files with 338 additions and 283 deletions
16
client/js/modules/index.js
Normal file
16
client/js/modules/index.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
import documentTitle from './documentTitle';
|
||||
import fonts from './fonts';
|
||||
import initialState from './initialState';
|
||||
import socket from './socket';
|
||||
import storage from './storage';
|
||||
import widthUpdates from './widthUpdates';
|
||||
|
||||
export default function runModules(ctx) {
|
||||
fonts(ctx);
|
||||
initialState(ctx);
|
||||
|
||||
documentTitle(ctx);
|
||||
socket(ctx);
|
||||
storage(ctx);
|
||||
widthUpdates(ctx);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue