The easiest way to add SVG icons in React
SVG images can be used a couple different ways in react, this is my favorite option.
I create a file for the svg, and make it into a JSX component.
export default function FacebookSvg() {
return (<div>
<svg ... />
</div>
)
}
Simp...
blog.skorpen.com2 min read