The problem
When rendering an \
When rendered on the server, images now include the 'src' and will be
downloaded by the browser rather than waiting for the client-side JS to
initiate image loading.
how ever the nature does not seem to be functioning correctly as of ^0.10.0.
How to reproduce
I have included a test case of the issue in the codesandbox bellow. I have just printed the result from the SSR to show it is a div rather then an image.
Simplified test case: https://codesandbox.io/s/4qv993qrmx
Steps to reproduce:
Expected behavior
the html from the ReactDOMServer.renderToString should be an img tag but is a div tag and then is changed after the client side is hydrated.
Environment (include versions). Did this work in previous versions?
Additional:
I am pretty sure your intention was to render out the \
I have logged the issue, but have closed it temporarily to make sure it wasn't any thing to do with my browser.
Reopened. The issue became hidden on codesandbox due to the live rerendering of code sandbox.
by going directly to https://4qv993qrmx.codesandbox.io/ where it only renders once until you edit it will show the error.

Duplicate of #543 and reason for the current approach is explained by https://github.com/necolas/react-native-web/issues/543#issuecomment-310844971
If you want to SSR an image use the defaultSource prop.
Most helpful comment
Duplicate of #543 and reason for the current approach is explained by https://github.com/necolas/react-native-web/issues/543#issuecomment-310844971
If you want to SSR an image use the
defaultSourceprop.