Estou tentando carregar um .json local mas ele nao carrega:
componentWillMount(){
var customData = require('./data/questions');
fetch(customData)
.then(response => response.json())
.then(questions => {
this.setState({
questions:questions.questions.sort(function() { return 0.5 - Math.random() })
});
});
}
Acho que pode ser por o meu .json estar local.
segue o erro: Unexpected token < in JSON at position 0