summaryrefslogtreecommitdiff
path: root/src/web/app/auth/script.js
blob: cded308091ba3c52fac57f4c3c7ae9661bfe3ccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * Authorize Form
 */

// Style
import './style.styl';

const riot = require('riot');
document.title = 'Misskey | アプリの連携';
require('./tags');
const boot = require('../boot.js');

/**
 * Boot
 */
boot(me => {
	mount(document.createElement('mk-index'));
});

function mount(content) {
	riot.mount(document.getElementById('app').appendChild(content));
}