misskey/src/web/app/stats/script.ts

24 lines
341 B
TypeScript
Raw Normal View History

2017-08-12 08:17:03 +02:00
/**
* Stats
*/
// Style
import './style.styl';
import * as riot from 'riot';
require('./tags');
import init from '../init';
document.title = 'Misskey Statistics';
/**
* init
*/
2017-11-15 19:06:52 +01:00
init(() => {
2017-08-12 08:17:03 +02:00
mount(document.createElement('mk-index'));
});
function mount(content) {
riot.mount(document.getElementById('app').appendChild(content));
}