mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-08-03 11:35:43 +00:00
50 lines
1.0 KiB
TypeScript
50 lines
1.0 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/app-scheduler authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React, { useMemo } from 'react';
|
|
|
|
import { Tabs } from '@pezkuwi/react-components';
|
|
import { useApi } from '@pezkuwi/react-hooks';
|
|
|
|
import DispatchQueue from './DispatchQueue.js';
|
|
import Scheduler from './Scheduler.js';
|
|
import { useTranslation } from './translate.js';
|
|
|
|
interface Props {
|
|
basePath: string;
|
|
className?: string;
|
|
}
|
|
|
|
function App ({ basePath, className }: Props): React.ReactElement<Props> {
|
|
const { t } = useTranslation();
|
|
const { api } = useApi();
|
|
|
|
const tabs = useMemo(
|
|
() => [
|
|
{
|
|
isRoot: true,
|
|
name: 'overview',
|
|
text: t('Overview')
|
|
}
|
|
],
|
|
[t]
|
|
);
|
|
|
|
return (
|
|
<main className={className}>
|
|
<Tabs
|
|
basePath={basePath}
|
|
items={tabs}
|
|
/>
|
|
{api.query.democracy && (
|
|
<DispatchQueue />
|
|
)}
|
|
{api.query.scheduler && (
|
|
<Scheduler />
|
|
)}
|
|
</main>
|
|
);
|
|
}
|
|
|
|
export default React.memo(App);
|