mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-10 23:14:48 +00:00
5 lines
167 B
JavaScript
5 lines
167 B
JavaScript
export const getCustomerList = (state) =>
|
|
state.customerList ? state.customerList : []
|
|
|
|
export const getUserList = (state) => (state.userList ? state.userList : [])
|