const addNumberHandler = async () => {
try {
await axios.post('/newNumber/', obj, {
headers: {
'Content-Type': 'application/json'
}
})
.then(res => {
if (res.data.status === 201) {
return <Redirect to="/"/>;
}
});
} catch (e) {
console.log(e);
}
}