You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when trying to import YTSearch i get this error
ERROR in ./src/index.js
Module not found: Error: Cannot resolve module 'youtube-api-search' in /Users/fillipi/ReduxSimpleStarter/src
@ ./src/index.js 11:24-53
import React from 'react';
import ReactDOM from 'react-dom';
import YTSearch from 'youtube-api-search';
Hi @fillipi1. Try to remove the existing module using npm r youtube-api-search and then re-install the module using npm install --save youtube-api-search.
I don't know why this error is occurring as when I did this project it went out all smoothly.
Hi @fillipi1. Try to remove the existing module using npm r youtube-api-search and then re-install the module using npm install --save youtube-api-search.
I don't know why this error is occurring as when I did this project it went out all smoothly.
when trying to import YTSearch i get this error
ERROR in ./src/index.js
Module not found: Error: Cannot resolve module 'youtube-api-search' in /Users/fillipi/ReduxSimpleStarter/src
@ ./src/index.js 11:24-53
import React from 'react';
import ReactDOM from 'react-dom';
import YTSearch from 'youtube-api-search';
import SearchBar from './component/searchBar';
const API_KEY = 'AIzaSyAU9eqxZ7GpTpr8X0e_nV2h0AMVnAuJKaI';
YTSearch({key: API_KEY, term: 'surfboards'}, function(data) {
console.log(data);
});
//create new component. this should produce some html
const App = () => {
return (
//take this components generated html and put it on the page (in the DOM)
ReactDOM.render(, document.querySelector('.container'));
The text was updated successfully, but these errors were encountered: