/*
 * @Author: wfl
 * @LastEditors: wfl
 * @description:
 * @updateInfo:
 * @Date: 2022-08-12 18:42:51
 * @LastEditTime: 2022-08-29 14:27:05
 */
import { ikVue } from 'iking-utils';

import appDarkModeToggle from './src/AppDarkModeToggle.vue';
import appLocalePicker from './src/AppLocalePicker.vue';
import appLogo from './src/AppLogo.vue';
import appProvider from './src/AppProvider.vue';
import appSearch from './src/search/AppSearch.vue';

export { useAppProviderContext } from './src/useAppContext';

export const AppLogo = ikVue.withInstall(appLogo);
export const AppProvider = ikVue.withInstall(appProvider);
export const AppSearch = ikVue.withInstall(appSearch);
export const AppLocalePicker = ikVue.withInstall(appLocalePicker);
export const AppDarkModeToggle = ikVue.withInstall(appDarkModeToggle);
