24 lines
341 B
TypeScript
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(() => {
|
|
mount(document.createElement('mk-index'));
|
|
});
|
|
|
|
function mount(content) {
|
|
riot.mount(document.getElementById('app').appendChild(content));
|
|
}
|