Created
March 4, 2016 16:24
-
-
Save PelagicDev/ba58b54a153b367b2ae7 to your computer and use it in GitHub Desktop.
ERB image_tag in React JSX
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
class MyImage extends React.Component { | |
render () { | |
return ( | |
<img src="<%= asset_url('path/to/image.png') %>" /> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment