{isLoading &&
Loading...}
{customer_groups && !customer_groups.length && (
No Customer Groups
)}
{customer_groups && customer_groups.length > 0 && (
{customer_groups.map((customerGroup: CustomerGroup) => (
- {customerGroup.name}
))}
)}
)
}
export default CustomerGroups
```