, когда я попытался отправить некоторые случайные данные в firebase через ax ios из файла js, показанная ошибка приведена ниже.
_axios_order__WEBPACK_IMPORTED_MODULE_2___default.a.post is not a function.
код
//all import statements including axios and there is an axios file and it contains an axios baseURL.And the class definition.
purchasecontinueHandler=()=>{
const order={
ingredients:this.state.ingredient,
price:this.state.burgerprice,
}
axios.post('/orders.json',order)
.then(response => console.log(response))
}