mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-08-05 17:15:50 +00:00
1295c36241
- Fixed TypeScript type assertion issues - Updated imports from api-augment/substrate to api-augment/bizinikiwi - Fixed imgConvert.mjs header and imports - Added @ts-expect-error for runtime-converted types - Fixed all @polkadot copyright headers to @pezkuwi
45 lines
1.0 KiB
TypeScript
45 lines
1.0 KiB
TypeScript
// Copyright 2017-2025 @pezkuwi/app-explorer authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { AugmentedBlockHeader, KeyedEvent } from '@pezkuwi/react-hooks/ctx/types';
|
|
|
|
import React from 'react';
|
|
|
|
import { Columar } from '@pezkuwi/react-components';
|
|
|
|
import BlockHeaders from './BlockHeaders.js';
|
|
import Events from './Events.js';
|
|
import Query from './Query.js';
|
|
import Summary from './Summary.js';
|
|
|
|
interface Props {
|
|
eventCount: number;
|
|
events: KeyedEvent[];
|
|
headers: AugmentedBlockHeader[];
|
|
}
|
|
|
|
function Main ({ eventCount, events, headers }: Props): React.ReactElement<Props> {
|
|
return (
|
|
<>
|
|
<Query />
|
|
<Summary
|
|
eventCount={eventCount}
|
|
headers={headers}
|
|
/>
|
|
<Columar>
|
|
<Columar.Column>
|
|
<BlockHeaders headers={headers} />
|
|
</Columar.Column>
|
|
<Columar.Column>
|
|
<Events
|
|
events={events}
|
|
showToggle
|
|
/>
|
|
</Columar.Column>
|
|
</Columar>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default React.memo(Main);
|