export const useProjects = () => {
  return useState<any[]>('projects', () => ([
    {
      menu: true,
      text: 'Projects',
      translatedText: '', 
      value: 'projects_and_tasks', 
      link: '#', 
      icon: 'menu-icon tf-icons ti ti-clipboard-list',
      active: false,
      child: true,
      children: [
        {
          text: 'Projects', 
          translatedText: '',
          value: 'projects', 
          link: '/projects/projects', 
          active: false
        },
        {
          text: 'Project Types',
          translatedText: '', 
          value: 'project_types', 
          link: '/projects/project-types', 
          active: false
        },
      ]
    },
  ]))
}