eslint: sort imports & exports
This commit is contained in:
@ -2,47 +2,48 @@ import "./index.css";
|
||||
import "@szhsin/react-menu/dist/index.css";
|
||||
import "@/assets/fonts/inter.css";
|
||||
|
||||
import { encodeTLVEntries } from "@snort/system";
|
||||
import { SnortContext } from "@snort/system-react";
|
||||
import { StrictMode } from "react";
|
||||
import * as ReactDOM from "react-dom/client";
|
||||
import { createBrowserRouter, RouteObject, RouterProvider } from "react-router-dom";
|
||||
import { encodeTLVEntries } from "@snort/system";
|
||||
import { SnortContext } from "@snort/system-react";
|
||||
|
||||
import * as serviceWorkerRegistration from "@/serviceWorkerRegistration";
|
||||
import { preload } from "@/Cache";
|
||||
import { ThreadRoute } from "@/Components/Event/Thread";
|
||||
import { db } from "@/Db";
|
||||
import { updateRelayConnections } from "@/Hooks/useLoginRelays";
|
||||
import { IntlProvider } from "@/IntlProvider";
|
||||
import { getCountry, storeRefCode, unwrap } from "@/Utils";
|
||||
import { AboutPage } from "@/Pages/About";
|
||||
import { SnortDeckLayout } from "@/Pages/DeckLayout";
|
||||
import DonatePage from "@/Pages/DonatePage";
|
||||
import ErrorPage from "@/Pages/ErrorPage";
|
||||
import FreeNostrAddressPage from "@/Pages/FreeNostrAddressPage";
|
||||
import HelpPage from "@/Pages/HelpPage";
|
||||
import Layout from "@/Pages/Layout";
|
||||
import { ListFeedPage } from "@/Pages/ListFeedPage";
|
||||
import MessagesPage from "@/Pages/Messages/MessagesPage";
|
||||
import NetworkGraph from "@/Pages/NetworkGraph";
|
||||
import NostrAddressPage from "@/Pages/NostrAddressPage";
|
||||
import NostrLinkHandler from "@/Pages/NostrLinkHandler";
|
||||
import NotificationsPage from "@/Pages/Notifications/Notifications";
|
||||
import { OnboardingRoutes } from "@/Pages/onboarding";
|
||||
import ProfilePage from "@/Pages/Profile/ProfilePage";
|
||||
import { RootRoutes, RootTabRoutes } from "@/Pages/Root";
|
||||
import NotificationsPage from "@/Pages/Notifications/Notifications";
|
||||
import SettingsRoutes from "@/Pages/settings/Routes";
|
||||
import ErrorPage from "@/Pages/ErrorPage";
|
||||
import NostrAddressPage from "@/Pages/NostrAddressPage";
|
||||
import MessagesPage from "@/Pages/Messages/MessagesPage";
|
||||
import DonatePage from "@/Pages/DonatePage";
|
||||
import SearchPage from "@/Pages/SearchPage";
|
||||
import HelpPage from "@/Pages/HelpPage";
|
||||
import NostrLinkHandler from "@/Pages/NostrLinkHandler";
|
||||
import { ThreadRoute } from "@/Components/Event/Thread";
|
||||
import SettingsRoutes from "@/Pages/settings/Routes";
|
||||
import { SubscribeRoutes } from "@/Pages/subscribe";
|
||||
import ZapPoolPage from "@/Pages/ZapPool";
|
||||
import { db } from "@/Db";
|
||||
import { preload } from "@/Cache";
|
||||
import { LoginStore } from "@/Utils/Login";
|
||||
import { SnortDeckLayout } from "@/Pages/DeckLayout";
|
||||
import FreeNostrAddressPage from "@/Pages/FreeNostrAddressPage";
|
||||
import { ListFeedPage } from "@/Pages/ListFeedPage";
|
||||
import { updateRelayConnections } from "@/Hooks/useLoginRelays";
|
||||
import { AboutPage } from "@/Pages/About";
|
||||
import { OnboardingRoutes } from "@/Pages/onboarding";
|
||||
import { setupWebLNWalletConfig } from "@/Wallet/WebLN";
|
||||
import { Wallets } from "@/Wallet";
|
||||
import NetworkGraph from "@/Pages/NetworkGraph";
|
||||
import WalletPage from "./Pages/wallet";
|
||||
import { hasWasm, wasmInit, WasmPath } from "@/Utils/wasm";
|
||||
import * as serviceWorkerRegistration from "@/serviceWorkerRegistration";
|
||||
import { System } from "@/system";
|
||||
import { WalletSendPage } from "./Pages/wallet/send";
|
||||
import { getCountry, storeRefCode, unwrap } from "@/Utils";
|
||||
import { LoginStore } from "@/Utils/Login";
|
||||
import { hasWasm, wasmInit, WasmPath } from "@/Utils/wasm";
|
||||
import { Wallets } from "@/Wallet";
|
||||
import { setupWebLNWalletConfig } from "@/Wallet/WebLN";
|
||||
|
||||
import WalletPage from "./Pages/wallet";
|
||||
import { WalletReceivePage } from "./Pages/wallet/receive";
|
||||
import { WalletSendPage } from "./Pages/wallet/send";
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
|
Reference in New Issue
Block a user