iceshrimp-legacy/src/web/app/stats/script.ts
2017-11-13 18:05:35 +09:00

24 lines
341 B
TypeScript

/**
* Stats
*/
// Style
import './style.styl';
import * as riot from 'riot';
require('./tags');
import init from '../init';
document.title = 'Misskey Statistics';
/**
* init
*/
init(me => {
mount(document.createElement('mk-index'));
});
function mount(content) {
riot.mount(document.getElementById('app').appendChild(content));
}