Sharkey/src/web/app/auth/script.js
2017-05-18 05:06:55 +09:00

23 lines
360 B
JavaScript

/**
* Authorize Form
*/
// Style
import './style.styl';
import * as riot from 'riot';
require('./tags');
import init from '../init';
document.title = 'Misskey | アプリの連携';
/**
* init
*/
init(me => {
mount(document.createElement('mk-index'));
});
function mount(content) {
riot.mount(document.getElementById('app').appendChild(content));
}