mirror of
https://github.com/pezkuwichain/pezkuwi-sdk-ui.git
synced 2026-06-12 08:51:07 +00:00
d949863789
Comprehensive web interface for interacting with Pezkuwi blockchain. Features: - Blockchain explorer - Wallet management - Staking interface - Governance participation - Developer tools Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
945 B
TypeScript
45 lines
945 B
TypeScript
// Copyright 2017-2026 @pezkuwi/app-referenda authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React, { useRef } from 'react';
|
|
|
|
import { Tabs } from '@pezkuwi/react-components';
|
|
|
|
import Referenda from './Referenda/index.js';
|
|
import { useTranslation } from './translate.js';
|
|
|
|
export { default as useCounter } from './useCounter.js';
|
|
|
|
interface Props {
|
|
basePath: string;
|
|
className?: string;
|
|
}
|
|
|
|
function App ({ basePath, className }: Props): React.ReactElement<Props> {
|
|
const { t } = useTranslation();
|
|
|
|
const tabsRef = useRef([
|
|
{
|
|
isRoot: true,
|
|
name: 'overview',
|
|
text: t('Overview')
|
|
}
|
|
]);
|
|
|
|
return (
|
|
<main className={className}>
|
|
<Tabs
|
|
basePath={basePath}
|
|
items={tabsRef.current}
|
|
/>
|
|
<Referenda
|
|
isConvictionVote
|
|
palletReferenda='referenda'
|
|
palletVote='convictionVoting'
|
|
/>
|
|
</main>
|
|
);
|
|
}
|
|
|
|
export default React.memo(App);
|