mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 01:16:27 +01:00
22 lines
367 B
JavaScript
22 lines
367 B
JavaScript
/**
|
|
* 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));
|
|
}
|