export const useIntegrations = () => {
  return useState<any[]>('integrations', () => ([
    {
      menu: true,
      text: 'Integrations',
      translatedText: '', 
      value: 'integrations', 
      link: '#', 
      icon: 'menu-icon tf-icons ti ti-hierarchy',
      active: false,
      child: true,
      children: [
        {
          text: 'CRM Dashboard',
          translatedText: '', 
          value: 'crm_dashboard', 
          link: '#', 
          active: false
        },
        {
          text: 'POS Terminal',
          translatedText: '', 
          value: 'pos_terminal', 
          link: '#', 
          active: false
        },
      ]
    },
  ]))
}