2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Authorize Form
|
|
|
|
*/
|
|
|
|
|
2017-02-19 04:31:23 +01:00
|
|
|
// Style
|
2017-02-19 07:36:53 +01:00
|
|
|
import './style.styl';
|
2017-02-19 04:31:23 +01:00
|
|
|
|
2017-03-18 12:05:11 +01:00
|
|
|
import * as riot from 'riot';
|
2017-02-02 21:22:12 +01:00
|
|
|
require('./tags');
|
2017-03-18 12:05:11 +01:00
|
|
|
import boot from '../boot';
|
|
|
|
|
|
|
|
document.title = 'Misskey | アプリの連携';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Boot
|
|
|
|
*/
|
|
|
|
boot(me => {
|
|
|
|
mount(document.createElement('mk-index'));
|
|
|
|
});
|
|
|
|
|
|
|
|
function mount(content) {
|
|
|
|
riot.mount(document.getElementById('app').appendChild(content));
|
|
|
|
}
|