How to import SVG in React
Method 1
using it as a source for img tag
import icon from './icon.svg';
const Footer = () => {
return(
<Footer>
{/*... */}
<a href='#'>
<img src={icon} alt=""/>
</a>
</Footer>
)
}
Method 2
use it as a componen...
zougari47.hashnode.dev1 min read