mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-19 13:18:30 +02:00
refactor: move Orderbook to distinct dir
This commit is contained in:
parent
ae16f3e701
commit
f907768fca
4 changed files with 5 additions and 5 deletions
|
|
@ -19,10 +19,10 @@ import CreateWallet from '@/components/CreateWallet'
|
|||
import JamLanding from '@/components/JamLanding'
|
||||
import LoginPage from '@/components/Login'
|
||||
import { Logs } from '@/components/Logs'
|
||||
import { Orderbook } from '@/components/Orderbook'
|
||||
import SwitchWallet from '@/components/SwitchWallet'
|
||||
import { EarnPage } from '@/components/earn/EarnPage'
|
||||
import { Layout } from '@/components/layout/Layout'
|
||||
import { Orderbook } from '@/components/orderbook/Orderbook'
|
||||
import { Receive } from '@/components/receive/Receive'
|
||||
import { SendPage } from '@/components/send/SendPage'
|
||||
import { RescanChain } from '@/components/settings/RescanChain'
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { AlertTriangleIcon, BlocksIcon, BookOpenIcon, CheckIcon, FileIcon, XIcon
|
|||
import { useTranslation, Trans } from 'react-i18next'
|
||||
import { Link } from 'react-router-dom'
|
||||
import { useStore } from 'zustand'
|
||||
import { OrderbookDialog } from '@/components/OrderbookDialog'
|
||||
import { OrderbookDialog } from '@/components/orderbook/OrderbookDialog'
|
||||
import { Button } from '@/components/ui/button'
|
||||
import { isDebugFeatureEnabled } from '@/constants/debugFeatures'
|
||||
import { routes } from '@/constants/routes'
|
||||
|
|
|
|||
|
|
@ -51,9 +51,9 @@ import {
|
|||
import { jamSettingsStore } from '@/store/jamSettingsStore'
|
||||
import { jmSessionStore } from '@/store/jmSessionStore'
|
||||
import type { AmountSats } from '@/types/global'
|
||||
import { DevBadge } from './dev/DevBadge'
|
||||
import { Alert, AlertDescription } from './ui/alert'
|
||||
import { Label } from './ui/label'
|
||||
import { DevBadge } from '../dev/DevBadge'
|
||||
import { Alert, AlertDescription } from '../ui/alert'
|
||||
import { Label } from '../ui/label'
|
||||
|
||||
const ITEMS_PER_PAGE = 25
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue