mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-23 06:35:05 +01:00
* feat: ✨ channel stats * chore: 🔧 add node resolver * chore: 🔧 add monitored time * chore: 🔧 and queries to front * fix: 🐛 floats to ints * chore: 🔧 add progress bars * chore: 🔧 add channel resolver * chore: 🔧 refactor forwards frontend * refactor: ♻️ channel resolvers * chore: 🔧 refactor channel queries * refactor: ♻️ peer resolver * refactor: ♻️ peer query * fix: 🐛 small changes * fix: 🐛 typo * chore: 🔧 stats view wip * chore: 🔧 add update script * chore: 🔧 improve ui * chore: 🔧 move buttons * fix: 🐛 home path * chore: 🔧 add public key to node resolver * refactor: ♻️ resume resolver * chore: 🔧 remove test account * chore: 🔧 change logger for lnpay * feat: ✨ github version Co-authored-by: apotdevin <apotdevincab@gmail.com>
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import { GridWrapper } from 'src/components/gridWrapper/GridWrapper';
|
|
import { withApollo } from 'config/client';
|
|
import { Version } from 'src/components/version/Version';
|
|
import { NetworkInfo } from '../src/views/home/networkInfo/NetworkInfo';
|
|
import { AccountInfo } from '../src/views/home/account/AccountInfo';
|
|
import { QuickActions } from '../src/views/home/quickActions/QuickActions';
|
|
import { FlowBox } from '../src/views/home/reports/flow';
|
|
import { ForwardBox } from '../src/views/home/reports/forwardReport';
|
|
import { LiquidReport } from '../src/views/home/reports/liquidReport/LiquidReport';
|
|
import { ConnectCard } from '../src/views/home/connect/Connect';
|
|
import { NodeBar } from '../src/components/nodeInfo/NodeBar';
|
|
|
|
const HomeView = () => {
|
|
return (
|
|
<>
|
|
<Version />
|
|
<AccountInfo />
|
|
<NodeBar />
|
|
<ConnectCard />
|
|
<QuickActions />
|
|
<FlowBox />
|
|
<LiquidReport />
|
|
<ForwardBox />
|
|
<NetworkInfo />
|
|
</>
|
|
);
|
|
};
|
|
|
|
const Wrapped = () => (
|
|
<GridWrapper>
|
|
<HomeView />
|
|
</GridWrapper>
|
|
);
|
|
|
|
export default withApollo(Wrapped);
|