2017-08-11 09:57:16 -05:00
|
|
|
/**
|
|
|
|
* Status
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Style
|
|
|
|
import './style.styl';
|
|
|
|
|
|
|
|
import * as riot from 'riot';
|
|
|
|
require('./tags');
|
|
|
|
import init from '../init';
|
|
|
|
|
|
|
|
document.title = 'Misskey System Status';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* init
|
|
|
|
*/
|
2017-11-15 12:06:52 -06:00
|
|
|
init(() => {
|
2017-08-11 09:57:16 -05:00
|
|
|
mount(document.createElement('mk-index'));
|
|
|
|
});
|
|
|
|
|
|
|
|
function mount(content) {
|
|
|
|
riot.mount(document.getElementById('app').appendChild(content));
|
|
|
|
}
|