2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* Authorize Form
|
|
|
|
*/
|
|
|
|
|
2017-02-19 12:31:23 +09:00
|
|
|
// Style
|
2017-02-19 15:36:53 +09:00
|
|
|
import './style.styl';
|
2017-02-19 12:31:23 +09:00
|
|
|
|
2017-03-18 20:05:11 +09:00
|
|
|
import * as riot from 'riot';
|
2017-02-03 05:22:12 +09:00
|
|
|
require('./tags');
|
2017-05-18 05:06:55 +09:00
|
|
|
import init from '../init';
|
2017-03-18 20:05:11 +09:00
|
|
|
|
|
|
|
document.title = 'Misskey | アプリの連携';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
|
|
|
/**
|
2017-05-18 05:06:55 +09:00
|
|
|
* init
|
2016-12-29 07:49:51 +09:00
|
|
|
*/
|
2017-11-16 03:06:52 +09:00
|
|
|
init(() => {
|
2016-12-29 07:49:51 +09:00
|
|
|
mount(document.createElement('mk-index'));
|
|
|
|
});
|
|
|
|
|
|
|
|
function mount(content) {
|
|
|
|
riot.mount(document.getElementById('app').appendChild(content));
|
|
|
|
}
|