svet-pos-project-client / src / pages / customers / CustomersWrapper.tsx
CustomersWrapper.tsx
Raw
import React from 'react'
import MiniTab from '../../parts/mini-tab/MiniTab'
const arr = [
  {
    label: 'customers',
    route:'/customers/new'
  },
  {
    label: 'customer-groups',
    route:'/customers/group'
  },

  
]
function CustomersWrapper(props:any) {
  return (
    <div>
      <MiniTab tabComponents={arr}/>
      {props.children}
    </div>
  )
}

export default CustomersWrapper