export const useManufacturings = () => {
  return useState<any[]>('manufacturings', () => ([
    {
      menu: true,
      text: 'Manufacturings',
      translatedText: '', 
      value: 'manufacturings', 
      link: '#', 
      icon: 'menu-icon tf-icons ti ti-assembly',
      active: false,
      child: true,
      children: [
        {
          text: 'Material Bills & Formula',
          translatedText: '', 
          value: 'material_bills_formula', 
          link: '/manufacturings/product-bom', 
          active: false
        },
        {
          text: 'Productions',
          translatedText: '',
          value: 'productions',
          link: '/manufacturings/productions',
          active: false
        },
        {
          text: 'BOM Productions',
          translatedText: '',
          value: 'bom_productions',
          link: '/manufacturings/bom-productions',
          active: false
        },
        {
          text: 'Quality Tests',
          translatedText: '',
          value: 'quality_tests', 
          link: '/manufacturings/quality-tests', 
          active: false
        },
        {
          text: 'Part Types',
          translatedText: '', 
          value: 'part_types', 
          link: '/manufacturings/part-types', 
          active: false
        },
      ]
    },
  ]))
}