diff options
Diffstat (limited to 'src/web/app/ch/script.ts')
| -rw-r--r-- | src/web/app/ch/script.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/web/app/ch/script.ts b/src/web/app/ch/script.ts new file mode 100644 index 0000000000..e23558037c --- /dev/null +++ b/src/web/app/ch/script.ts @@ -0,0 +1,18 @@ +/** + * Channels + */ + +// Style +import './style.styl'; + +require('./tags'); +import init from '../init'; +import route from './router'; + +/** + * init + */ +init(() => { + // Start routing + route(); +}); |