Newer
Older
CrypticOreWallet / src / global / AppServices.tsx
@Drew Lemmy Drew Lemmy on 24 Mar 2021 899 bytes feat: legacy wallet migration
// Copyright (c) 2020-2021 Drew Lemmy
// This file is part of KristWeb 2 under AGPL-3.0.
// Full details: https://github.com/tmpim/KristWeb2/blob/master/LICENSE.txt
import { StorageBroadcast } from "./StorageBroadcast";
import { LegacyMigration } from "./legacy/LegacyMigration";
import { SyncWallets } from "@comp/wallets/SyncWallets";
import { ForcedAuth } from "./ForcedAuth";
import { WebsocketService } from "./ws/WebsocketService";
import { SyncMOTD } from "./ws/SyncMOTD";
import { AppHotkeys } from "./AppHotkeys";
import { PurchaseKristHandler } from "./PurchaseKrist";
import { AdvanceTip } from "@pages/dashboard/TipsCard";

export function AppServices(): JSX.Element {
  return <>
    <StorageBroadcast />
    <LegacyMigration />
    <SyncWallets />
    <SyncMOTD />
    <ForcedAuth />
    <WebsocketService />
    <AppHotkeys />
    <PurchaseKristHandler />
    <AdvanceTip />
  </>;
}