mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-24 23:57:57 +00:00
19 lines
473 B
TypeScript
19 lines
473 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-settings';
|
|
|
|
export default function create (t: TFunction): Route {
|
|
return {
|
|
Component,
|
|
display: {},
|
|
group: 'settings',
|
|
icon: 'cogs',
|
|
name: 'settings',
|
|
text: t('nav.settings', 'Settings', { ns: 'apps-routing' }),
|
|
useCounter
|
|
};
|
|
}
|