Trying to send a POST request to the server:
sendDataOnServer() { axios.post('http://localhost/parser/api/set_bet.php',{ market: this.props.bets.market, outcome: this.props.bets.type, odd: this.props.bets.odd, stake: this.state.value }) } But for some reason an OPTIONS request is sent, how to fix it?