mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 08:58:00 +00:00
25 lines
617 B
TypeScript
25 lines
617 B
TypeScript
// Copyright 2017-2026 @pezkuwi/apps-routing authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { Route, TFunction } from './types.js';
|
|
|
|
import Component, { useCounter } from '@pezkuwi/app-tech-comm';
|
|
|
|
export default function create (t: TFunction): Route {
|
|
return {
|
|
Component,
|
|
display: {
|
|
needsAccounts: true,
|
|
needsApi: [
|
|
'query.technicalCommittee.members'
|
|
],
|
|
needsApiInstances: true
|
|
},
|
|
group: 'governance',
|
|
icon: 'microchip',
|
|
name: 'techcomm',
|
|
text: t('nav.tech-comm', 'Tech. comm.', { ns: 'apps-routing' }),
|
|
useCounter
|
|
};
|
|
}
|