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';