Answers for "Can't import the named export 'logo' (imported as 'logo') from default-exporting module (only default export is available)"

0

Can't import the named export 'logo' (imported as 'logo') from default-exporting module (only default export is available)

//Before Error
import {logo} from '../../images/logo.png';
<img src={logo} alt="" />

//Solved By removing 2nd parenthesis.  
import logo from '../../images/logo.png';
Posted by: Guest on April-16-2022

Code answers related to "Can't import the named export 'logo' (imported as 'logo') from default-exporting module (only default export is available)"

Code answers related to "Javascript"

Browse Popular Code Answers by Language