export const signUp=(email, phone, password)=> {
return {
type: "SIGN_UP",
promise: axios.post(`${API_URL}auth/register`,
{
email:email,
phone:phone,
password:password
},
{
headers:{ 'Content-Type':'application/json'}
}
),
}