svet-pos-project-client / src / pages / inventory / InventoryWrapper.tsx
InventoryWrapper.tsx
Raw
import React from 'react'
import MiniTab from '../../parts/mini-tab/MiniTab'
const arr = [
  {
    label: 'stock-movement',
    route:'/inventory/stock'
  },
  
  {
    label: 'inventory-count',
    route:'/inventory/count'
  },
  {
    label: 'supplier',
    route:'/inventory/supplier'
  }
  
]
function InventoryWrapper(props:any) {
  return (
    <div>
      <MiniTab tabComponents={arr}/>
      {props.children}
    </div>
  )
}

export default InventoryWrapper