me retorna o seguinte erro:
1 of 2 errors on the page TypeError:
jquery__WEBPACK_IMPORTED_MODULE_8___default.a.ajax(...).bind is not a function
App.componentWillMount
src/App.js:13
10 | }
11 |
12 | componentWillMount(){
> 13 | $.ajax({
| ^ 14 | url: '',
15 | dataType: 'json',
16 | success:function(resposta) {
código:
componentWillMount(){
$.ajax({
url: 'http://cdc-react.herokuapp.com/api/autores',
dataType: 'json',
success:function(resposta) {
this.setState = ({ lista:resposta })
}
}).bind(this)
}