React Code
componentDidMount(){
fetch('http://localhost:8080/ulearn/rest/course/getAll')
.then(result=> {
this.setState({items:result.json()});
});}
When i tried making a rest api call from two different ports(react port is running on 8088 and my rest api port running on 8080) i get the following error