export const useTenants = () => {
  return useState<any[]>('tenants', () => ([
    {
      menu: true,
      text: 'Tenants',
      translatedText: '', 
      value: 'tenants_and_providers', 
      link: '#', 
      icon: 'menu-icon tf-icons ti ti-building-community',
      active: false,
      child: true,
      children: [
        {
          text: 'Tenants',
          translatedText: '', 
          value: 'admin_tenants', 
          link: '#', 
          active: false
        },
        {
          text: 'Web Stores',
          translatedText: '', 
          value: 'admin_web_stores', 
          link: '#', 
          active: false
        },
        {
          text: 'Address Validations',
          translatedText: '', 
          value: 'admin_address_validations', 
          link: '#', 
          active: false
        },
        {
          text: 'Tax Providers',
          translatedText: '', 
          value: 'admin_tax_providers', 
          link: '#', 
          active: false
        },
        {
          text: 'Storage Providers',
          translatedText: '', 
          value: 'admin_storage_providers', 
          link: '#', 
          active: false
        },
      ]
    },
  ]))
}