Skip to content

Instantly share code, notes, and snippets.

@PelagicDev
Created March 4, 2016 16:24
Show Gist options
  • Save PelagicDev/ba58b54a153b367b2ae7 to your computer and use it in GitHub Desktop.
Save PelagicDev/ba58b54a153b367b2ae7 to your computer and use it in GitHub Desktop.
ERB image_tag in React JSX
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