Files
pwap/pezkuwi-sdk-ui/packages/page-explorer/src/Main.tsx
T
pezkuwichain 1295c36241 Rebrand: polkadot → pezkuwi build fixes
- 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
2026-01-07 02:32:54 +03:00

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);