Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 1x 1x 1x 1x 1x 1x 1x | import { FETCH_CONTACTS, SET_CONTACTS, SET_CONTACTS_LOADING, FETCH_TELEMEDECINES, SET_TELEMEDECINES, SET_TELEMEDECINES_LOADING, SET_HEALTH_INSUR_CONTACT, } from './constants'; export const fetchContacts = () => ({ type: FETCH_CONTACTS, }); export const setContacts = contacts => ({ type: SET_CONTACTS, payload: { contacts }, }); export const setHealthInsurerContact = contact => ({ type: SET_HEALTH_INSUR_CONTACT, payload: { contact }, }); export const fetchTelemedecines = () => ({ type: FETCH_TELEMEDECINES, }); export const setTelemedecines = telemedecines => ({ type: SET_TELEMEDECINES, payload: { telemedecines }, }); export const setContactsLoading = contactsLoading => ({ type: SET_CONTACTS_LOADING, payload: { contactsLoading }, }); export const setTelemedecinesLoading = telemedecinesLoading => ({ type: SET_TELEMEDECINES_LOADING, payload: { telemedecinesLoading }, }); |