export const useAssets = () => {
  return useState<any[]>('assets', () => ([
    {
      menu: true,
      text: 'Assets',
      translatedText: '', 
      value: 'assets_and_groups', 
      link: '#', 
      icon: 'menu-icon tf-icons ti ti-building-store',
      active: false,
      child: true,
      children: [
        {
          text: 'Assets',
          translatedText: '', 
          value: 'assets', 
          link: '/assets/assets', 
          active: false
        },
        {
          text: 'Asset Groups',
          translatedText: '', 
          value: 'asset_groups', 
          link: '/assets/asset-groups', 
          active: false
        },
      ]
    },
  ]))
}