I wanted to tryout React and started following the tutorial here Took the Internet template, added the required script references in _Layout.cshtml and placed the following script in About.cshtml.
This code with the '@' char is giving trouble:
<script type="text/jsx">
/**
* @jsx React.DOM
*/
// The above declaration must remain intact at the top of the script.
// Your code here
</script>
MVC says:
The name 'jsx' does not exist in the current context
Please provide some pointers
Regards.