let apiKey = 'a776e2df'; let model = { getMovies(search){ const url = "https://www.omdbapi.com/?apikey="+apiKey+"&s="+search; return fetch(url) .then(reponse=>reponse.json()); } } export default model