mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-05-20 16:46:58 +00:00
Move files
This commit is contained in:
parent
e331c90d11
commit
04828bc203
@ -116,7 +116,7 @@ import {
|
|||||||
timestampEnterDataAtom,
|
timestampEnterDataAtom,
|
||||||
txListAtom,
|
txListAtom,
|
||||||
} from './atoms/global';
|
} from './atoms/global';
|
||||||
import { NotAuthenticated } from './ExtStates/NotAuthenticated';
|
import { NotAuthenticated } from './components/NotAuthenticated.tsx';
|
||||||
import { handleGetFileFromIndexedDB } from './utils/indexedDB';
|
import { handleGetFileFromIndexedDB } from './utils/indexedDB';
|
||||||
import { Wallets } from './Wallets';
|
import { Wallets } from './Wallets';
|
||||||
import { useFetchResources } from './common/useFetchResources';
|
import { useFetchResources } from './common/useFetchResources';
|
||||||
|
@ -30,7 +30,7 @@ import { decryptStoredWalletFromSeedPhrase } from './utils/decryptWallet';
|
|||||||
import { crypto } from './constants/decryptWallet';
|
import { crypto } from './constants/decryptWallet';
|
||||||
import { LoadingButton } from '@mui/lab';
|
import { LoadingButton } from '@mui/lab';
|
||||||
import { PasswordField } from './components';
|
import { PasswordField } from './components';
|
||||||
import { HtmlTooltip } from './ExtStates/NotAuthenticated';
|
import { HtmlTooltip } from './components/NotAuthenticated';
|
||||||
import { MyContext } from './App';
|
import { MyContext } from './App';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import { getBaseApiReact } from '../App';
|
|||||||
import '../styles/CoreSyncStatus.css';
|
import '../styles/CoreSyncStatus.css';
|
||||||
import { useTheme } from '@mui/material';
|
import { useTheme } from '@mui/material';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import { manifestData } from '../ExtStates/NotAuthenticated';
|
import { manifestData } from './NotAuthenticated';
|
||||||
|
|
||||||
export const CoreSyncStatus = () => {
|
export const CoreSyncStatus = () => {
|
||||||
const [nodeInfos, setNodeInfos] = useState({});
|
const [nodeInfos, setNodeInfos] = useState({});
|
||||||
|
@ -5,10 +5,10 @@ import { ThingsToDoInitial } from './ThingsToDoInitial';
|
|||||||
import { GroupJoinRequests } from './GroupJoinRequests';
|
import { GroupJoinRequests } from './GroupJoinRequests';
|
||||||
import { GroupInvites } from './GroupInvites';
|
import { GroupInvites } from './GroupInvites';
|
||||||
import { ListOfGroupPromotions } from './ListOfGroupPromotions';
|
import { ListOfGroupPromotions } from './ListOfGroupPromotions';
|
||||||
import { QortPrice } from '../Home/QortPrice';
|
import { QortPrice } from '../QortPrice';
|
||||||
import ExploreIcon from '@mui/icons-material/Explore';
|
import ExploreIcon from '@mui/icons-material/Explore';
|
||||||
import { Explore } from '../Explore/Explore';
|
import { Explore } from '../Explore/Explore';
|
||||||
import { NewUsersCTA } from '../Home/NewUsersCTA';
|
import { NewUsersCTA } from '../NewUsersCTA';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
export const HomeDesktop = ({
|
export const HomeDesktop = ({
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Box, ButtonBase, Typography } from '@mui/material';
|
import { Box, ButtonBase, Typography } from '@mui/material';
|
||||||
import { Spacer } from '../../common/Spacer';
|
import { Spacer } from '../common/Spacer';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
export const NewUsersCTA = ({ balance }) => {
|
export const NewUsersCTA = ({ balance }) => {
|
@ -25,12 +25,12 @@ import {
|
|||||||
} from '@mui/material';
|
} from '@mui/material';
|
||||||
import Logo1Dark from '../assets/svgs/Logo1Dark.svg';
|
import Logo1Dark from '../assets/svgs/Logo1Dark.svg';
|
||||||
import HelpIcon from '@mui/icons-material/Help';
|
import HelpIcon from '@mui/icons-material/Help';
|
||||||
import { CustomizedSnackbars } from '../components/Snackbar/Snackbar';
|
import { CustomizedSnackbars } from './Snackbar/Snackbar';
|
||||||
import { cleanUrl, gateways } from '../background';
|
import { cleanUrl, gateways } from '../background';
|
||||||
import Tooltip, { TooltipProps, tooltipClasses } from '@mui/material/Tooltip';
|
import Tooltip, { TooltipProps, tooltipClasses } from '@mui/material/Tooltip';
|
||||||
import ThemeSelector from '../components/Theme/ThemeSelector';
|
import ThemeSelector from './Theme/ThemeSelector';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import LanguageSelector from '../components/Language/LanguageSelector';
|
import LanguageSelector from './Language/LanguageSelector';
|
||||||
import { MyContext } from '../App';
|
import { MyContext } from '../App';
|
||||||
|
|
||||||
export const manifestData = {
|
export const manifestData = {
|
@ -1,8 +1,8 @@
|
|||||||
import { useCallback, useEffect, useState } from 'react';
|
import { useCallback, useEffect, useState } from 'react';
|
||||||
import { getBaseApiReact } from '../../App';
|
import { getBaseApiReact } from '../App';
|
||||||
import { Box, Tooltip, Typography, useTheme } from '@mui/material';
|
import { Box, Tooltip, Typography, useTheme } from '@mui/material';
|
||||||
import { BarSpinner } from '../../common/Spinners/BarSpinner/BarSpinner';
|
import { BarSpinner } from '../common/Spinners/BarSpinner/BarSpinner';
|
||||||
import { formatDate } from '../../utils/time';
|
import { formatDate } from '../utils/time';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
function getAverageLtcPerQort(trades) {
|
function getAverageLtcPerQort(trades) {
|
Loading…
x
Reference in New Issue
Block a user