import React from 'react'; import Images from '../../assets/Images'; const MenuData = [ { name: 'Beranda', path: '/home', icon: <img src={Images.Home} style={{ width: 18, height: 18 }} /> }, { name: 'Budget Tahunan', path: '/budget-tahunan', icon: <img src={Images.budgetTahunan} style={{ width: 18, height: 18 }} /> }, { name: 'Laporan Bulanan', path: '/laporan-bulanan', icon: <img src={Images.laporanBulanan} style={{ width: 18, height: 18 }} /> }, { name: 'Manajemen Dokumen', path: '/manajemen-dokumen', icon: <img src={Images.manajemenDokumen} style={{ width: 18, height: 18 }} /> }, ]; const MenuLaporan = [ { name: 'Dashboard CAT', path: '/dashboard-cat', icon: <img src={Images.Home} style={{ width: 18, height: 18 }} /> }, { name: 'Report Summary Triputra Group', path: '/report-summary', icon: <img src={Images.Home} style={{ width: 18, height: 18 }} /> }, { name: 'Report Sub Holding', path: '/report-sub', icon: <img src={Images.Home} style={{ width: 18, height: 18 }} /> }, ] export {MenuData, MenuLaporan};