export const useOrganizations = () => { return useState('organizations', () => ([ { menu: true, text: 'organizations', translatedText: '', value: 'organizations_and_preferences', link: '#', icon: 'menu-icon tf-icons ti ti-hierarchy', active: false, child: true, children: [ { text: 'Organizations', translatedText: '', value: 'organizations', link: '/organizations', active: false }, { text: 'Organization Types', translatedText: '', value: 'organization_types', link: '#', active: false }, { text: 'Organization Dashboard', translatedText: '', value: 'organization_dashboard', link: '#', active: false }, { text: 'Organization Preference', translatedText: '', value: 'organization_preference', link: '#', active: false }, { text: 'Banks & Wallets', translatedText: '', value: 'banks_and_wallets', link: '#', active: false }, { text: 'Payment Methods', translatedText: '', value: 'payment_methods', link: '#', active: false }, { text: 'Subscriptions', translatedText: '', value: 'subscriptions', link: '#', active: false }, { text: 'Subscription Groups', translatedText: '', value: 'subscription_groups', link: '#', active: false }, ] }, ])) }