mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 22:25:21 +01:00
* chore: 🔧 change withApollo * feat: ✨ set cookie from server * chore: 🔧 remove bcrypt dep * fix: 🐛 initialize check * chore: 🔧 remove cookies correctly * fix: 🐛 status type
23 lines
521 B
TypeScript
23 lines
521 B
TypeScript
import React from 'react';
|
|
|
|
import { GridWrapper } from 'src/components/gridWrapper/GridWrapper';
|
|
import { withApollo } from 'config/client';
|
|
import { ChainTransactions } from '../src/views/chain/transactions/ChainTransactions';
|
|
import { ChainUtxos } from '../src/views/chain/utxos/ChainUtxos';
|
|
|
|
const ChainView = () => {
|
|
return (
|
|
<>
|
|
<ChainUtxos />
|
|
<ChainTransactions />
|
|
</>
|
|
);
|
|
};
|
|
|
|
const Wrapped = () => (
|
|
<GridWrapper>
|
|
<ChainView />
|
|
</GridWrapper>
|
|
);
|
|
|
|
export default withApollo(Wrapped);
|