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

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

import * as riot from 'riot';
require('./tags');
import boot from '../boot';

document.title = 'Misskey | アプリの連携';

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

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