export const usePartners = () => { return useState('partners', () => ([ { menu: true, text: 'Partners', translatedText: '', value: 'partners', link: '#', icon: 'menu-icon tf-icons ti ti-users', active: false, child: true, children: [ { text: 'Business Partners', translatedText: '', value: 'business_partners', link: '/partners/partners', active: false }, { text: 'Partner Groups', translatedText: '', value: 'partner_groups', link: '/partners/partner-groups', active: false }, { text: 'Greetings', translatedText: '', value: 'greetings', link: '/partners/greetings', active: false, }, { text: 'Dunnings', translatedText: '', value: 'dunnings', link: '/partners/dunnings', active: false, }, { text: 'Payment Terms', translatedText: '', value: 'payment_terms', link: '/partners/payment-terms', active: false, }, { text: 'Jobs', translatedText: '', value: 'jobs', link: '#', active: false, child: true, children: [ { text: 'Job Positions', translatedText: '', value: 'job_positions', link: '/partners/job-positions', active: false, }, { text: 'Job Categories', translatedText: '', value: 'job_categories', link: '/partners/job-categories', active: false, }, ] }, { text: 'Remunerations', translatedText: '', value: 'remunerations', link: '/partners/remunerations', active: false, } ] }, /*{ menu: false, text: 'Partners' }, { menu: true, text: 'Business Partners', value: 'business_partners', link: '/partners/partners', icon: 'menu-icon tf-icons ti ti-users', active: false, child: false, children: [] }, { menu: true, text: 'Partner Groups', value: 'partner_groups', link: '/partners/partner-groups', icon: 'menu-icon tf-icons ti ti-layers-difference', active: false, child: false, children: [] }, { menu: true, text: 'Greetings', value: 'greetings', link: '/partners/greetings', icon: 'menu-icon tf-icons ti ti-message', active: false, child: false, children: [] }, { menu: true, text: 'Dunnings', value: 'dunnings', link: '/partners/dunnings', icon: 'menu-icon tf-icons ti ti-timeline-event-text', active: false, child: false, children: [] }, { menu: true, text: 'Payment Terms', value: 'payment_terms', link: '/partners/payment-terms', icon: 'menu-icon tf-icons ti ti-receipt-refund', active: false, child: false, children: [] }, { menu: true, text: 'Job Positions', value: 'job_positions', link: '/partners/job-positions', icon: 'menu-icon tf-icons ti ti-tie', active: false, child: false, children: [] }, { menu: true, text: 'Job Categories', value: 'job_categories', link: '/partners/job-categories', icon: 'menu-icon tf-icons ti ti-compass', active: false, child: false, children: [] }, { menu: true, text: 'Remunerations', value: 'remunerations', link: '/partners/remunerations', icon: 'menu-icon tf-icons ti ti-award', active: false, child: false, children: [] }*/ ])) }