Add document title handling

This commit is contained in:
Ken-Håvard Lieng 2017-05-19 07:29:44 +02:00
parent 511b9e406c
commit 2afbf2359c
8 changed files with 156 additions and 65 deletions

View file

@ -0,0 +1,10 @@
import documentTitle from './documentTitle';
import handleSocket from './handleSocket';
import initialState from './initialState';
export default function runModules(ctx) {
initialState(ctx);
documentTitle(ctx);
handleSocket(ctx);
}