async function conecta(){
const conexao = await fetch('http://localhost:3000/videos');
const conexaoR = await conexao.json();
return conexaoR;
}
export const conectaApi = {conecta}
import { conectaApi } from "./conexaoApi.js";
async function recebeVideos(){
const lista = await conectaApi.recebeVideos()
lista.forEach(element => {
adicionaElementos(element.titulo,element.descricao,element.url,element.imagem)
});
}
recebeVideos()
erro: Uncaught (in promise) TypeError: conectaApi.recebeVideos is not a function at recebeVideos (apiVideos.js:4:36) at apiVideos.js:10:1