summaryrefslogtreecommitdiff
path: root/packages/frontend/src/boot/sub-boot.ts
blob: 036142bc4de67bfe162351158227646e6e738ccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * SPDX-FileCopyrightText: syuilo and misskey-project
 * SPDX-License-Identifier: AGPL-3.0-only
 */

import { createApp, defineAsyncComponent } from 'vue';
import { common } from './common.js';
import { emojiPicker } from '@/utility/emoji-picker.js';
import UiMinimum from '@/ui/minimum.vue';

export async function subBoot() {
	const { isClientUpdated } = await common(async () => createApp(UiMinimum));

	emojiPicker.init();
}