How I can use react-toastify promise while posting date using axios

// Want to show spinner while posting and then success/error message using react-toastify
Is it possible?

axios.post("/orders.json", order)
      .then((response) => {
        console.log(response.status);
      })
      .catch((error) => {
        console.log(error);
      });