Files
bigcapital/client/src/config/preferencesMenu.js
2021-06-10 12:51:00 +02:00

30 lines
542 B
JavaScript

import React from 'react'
import { FormattedMessage as T } from 'components';
export default [
{
text: <T id={'general'}/>,
disabled: false,
href: '/preferences/general',
},
{
text: <T id={'users'}/>,
href: '/preferences/users',
},
{
text: <T id={'currencies'}/>,
href: '/preferences/currencies',
},
{
text: <T id={'accountant'}/>,
disabled: false,
href: '/preferences/accountant',
},
{
text: <T id={'items'}/>,
disabled: false,
href: '/preferences/items',
},
];