How To Add My Own Svg Image Just Like Logo Is Shown By Default In Create-React-App
When you write {logo}
you're just embedding a URL.
If you want to show an image, use the <img>
tag like the default template does.
<img src={logo} alt="My logo" />
Hope this helps!