fetch
fetchData = async () => { const data = await fetch("URL"); const json = await data.json(); this.setState({film:json}) };