1234567891011121314151617181920212223 |
- // Copyright 2017-2020 @polkadot/apps-routing authors & contributors
- // This software may be modified and distributed under the terms
- // of the Apache-2.0 license. See the LICENSE file for details.
- import { Route } from './types';
- import Component, { useCounter } from '@polkadot/app-tech-comm';
- export default function create (t: <T = string> (key: string, text: string, options: { ns: string }) => T): Route {
- return {
- Component,
- display: {
- needsAccounts: true,
- needsApi: [
- 'query.technicalCommittee.members'
- ]
- },
- icon: 'microchip',
- name: 'techcomm',
- text: t<string>('nav.tech-comm', 'Tech. comm.', { ns: 'apps-routing' }),
- useCounter
- };
- }
|