Advertisement
shadiff

sidebarData

Sep 5th, 2023
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. export const SidebarData = [
  2. {
  3. title: 'Claims',
  4. path: '/overview',
  5. // icon: <AiIcons.AiFillHome />,
  6. iconClosed: <RiIcons.RiArrowDownSFill />,
  7. iconOpened: <RiIcons.RiArrowUpSFill />,
  8.  
  9. subNav: [
  10. {
  11. title: 'Capture Claims',
  12. role: 'Admin',
  13. path: '/overview/users',
  14. // icon: <IoIcons.IoIosPaper />
  15. },
  16. {
  17. title: 'Authorize Claims',
  18. role: 'Admin',
  19. path: '/overview/revenue',
  20. // icon: <IoIcons.IoIosPaper />
  21. }
  22. ]
  23. },
  24. {
  25. title: 'Case',
  26. path: '/reports',
  27. // icon: <IoIcons.IoIosPaper />,
  28. iconClosed: <RiIcons.RiArrowDownSFill />,
  29. iconOpened: <RiIcons.RiArrowUpSFill />,
  30.  
  31. subNav: [
  32. {
  33. title: 'Capture PreAuth',
  34. role: 'Admin',
  35. path: '/reports/reports1',
  36. // icon: <IoIcons.IoIosPaper />,
  37. cName: 'sub-nav'
  38. },
  39. {
  40. title: 'Authorize PreAuth',
  41. role: 'Admin',
  42. path: '/reports/reports2',
  43. // icon: <IoIcons.IoIosPaper />,
  44. cName: 'sub-nav'
  45. },
  46. ]
  47. },
  48.  
  49. {
  50. title: 'Case Manage',
  51. role: 'Admin',
  52. path: '/messages',
  53. // icon: <FaIcons.FaEnvelopeOpenText />,
  54.  
  55. iconClosed: <RiIcons.RiArrowDownSFill />,
  56. iconOpened: <RiIcons.RiArrowUpSFill />,
  57.  
  58. subNav: [
  59. {
  60. title: 'Capture Claims',
  61. role: 'Admin',
  62. path: '/messages/message1',
  63. icon: <IoIcons.IoIosPaper />
  64. },
  65. {
  66. title: 'Cancel Pre-Auth',
  67. role: 'Admin',
  68. path: '/messages/message2',
  69. icon: <IoIcons.IoIosPaper />
  70. },
  71. {
  72. title: 'Authorize Pre-Auth',
  73. role: 'Admin',
  74. path: '/messages/message2',
  75. icon: <IoIcons.IoIosPaper />
  76. },
  77. ]
  78. },
  79. {
  80. title: 'Reports',
  81. role: 'Admin',
  82. path: '/support',
  83. icon: <IoIcons.IoMdHelpCircle />
  84. }
  85. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement