export const useReports = () => {
  return useState<any[]>('reports', () => ([
    {
      menu: true,
      text: 'Reports', 
      translatedText: '',
      value: 'reports_and_charts', 
      link: '#', 
      icon: 'menu-icon tf-icons ti ti-file-analytics', //ti-file-chart
      active: false,
      child: true,
      children: [
        {
          text: 'General Ledger',
          translatedText: '', 
          value: 'general_ledger', 
          link: '#', 
          active: false
        },
        {
          text: 'Income Statement',
          translatedText: '', 
          value: 'income_statement', 
          link: '#', 
          active: false
        },
        {
          text: 'Balance Sheet',
          translatedText: '', 
          value: 'balance_sheet', 
          link: '#', 
          active: false
        },
        {
          text: 'Account Statement', 
          translatedText: '',
          value: 'account_statement', 
          link: '#', 
          active: false
        },
        {
          text: 'Trial Balance',
          translatedText: '', 
          value: 'trial_balance', 
          link: '#', 
          active: false
        },
      ]
    },
  ]))
}