mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 16:57:14 +01:00
23 lines
360 B
JavaScript
23 lines
360 B
JavaScript
/**
|
|
* Authorize Form
|
|
*/
|
|
|
|
// Style
|
|
import './style.styl';
|
|
|
|
import * as riot from 'riot';
|
|
require('./tags');
|
|
import init from '../init';
|
|
|
|
document.title = 'Misskey | アプリの連携';
|
|
|
|
/**
|
|
* init
|
|
*/
|
|
init(me => {
|
|
mount(document.createElement('mk-index'));
|
|
});
|
|
|
|
function mount(content) {
|
|
riot.mount(document.getElementById('app').appendChild(content));
|
|
}
|