Created
January 31, 2019 21:29
-
-
Save MohamedLamineAllal/441d81280629d5167d1aa0006f2d813c to your computer and use it in GitHub Desktop.
React import svg url way
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import myIcon from './icons/connected.svg' | |
export default class ConnexionBox extends PureComponent { | |
render() { | |
return ( | |
<div> | |
<img src={myIcon} alt="connected" /> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment