First and far most to rule out any file location problems when I use the average code in my HTML page it loads up correctly but when i return it in my react class i get this image which Stack Overflow wont let me post due to lack of 10 what ever points. But its just a blank window image
So this error has nothing to do with a file location problem i can get it to show up only inside of my HTML page not JSX file. The code for my JSX file is as follows
var Quiz = React.createClass({
render: function () {
return(
<div>
<img src="~/Images/SHADOW LOGO.png" />
</div>
)
React.render(<Quiz/>, document.getElementById('container'));
}
}
Also yes i did make sure the id in my HTML id does =container Any answer as to why it shows only if i put through the HTML page and not the react JSX file. Also my quiz class is returning other elements and components just fine some text boxes and buttons its only the images im having problems with.