This is the code i am working with in visual studio.
componentDidMount(){
axios.get('https://localhost:9090/teams/get/all')
.then(response=>{
console.log(response)
this.setState({posts:response.data})
})
.catch(error=>{
console.log(error)
})
}
xhr.js:178 GET https://localhost:9090/teams/get/all net::ERR_SSL_PROTOCOL_ERROR.
This one is the error i am getting everytime.