mirror of
https://github.com/apotdevin/thunderhub.git
synced 2024-11-19 18:00:05 +01:00
aa60d618f9
* feat: initial nextjs commit * chore: general card styles changes * chore: add storybook * chore: small changes and fixes * fix: trading filter encoding * fix: add link to node * chore: set to correct version
16 lines
318 B
TypeScript
16 lines
318 B
TypeScript
import React from 'react';
|
|
|
|
import { ChainTransactions } from '../src/views/chain/transactions/ChainTransactions';
|
|
import { ChainUtxos } from '../src/views/chain/utxos/ChainUtxos';
|
|
|
|
const ChainView = () => {
|
|
return (
|
|
<>
|
|
<ChainUtxos />
|
|
<ChainTransactions />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ChainView;
|