You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -234,8 +235,9 @@ Markdown is a simple way to format your text inline. For example, surrounding te
234
235
235
236
First, add the third-party **Showdown** library to your application. This is a JavaScript library which takes Markdown text and converts it to raw HTML. We will add it via NuGet (search for "Showdown" and install it, similar to how you installed ReactJS.NET earlier) and reference the script tag in your view:
@@ -920,7 +923,7 @@ var CommentBox = React.createClass({
920
923
921
924
In the view, we will accept the list of comments as the model, and use `Html.React` to render the component. This will replace the `React.render` call that currently exists in Tutorial.jsx. All the props from the current `React.render` call should be moved here, and the `React.render` call should be deleted.
922
925
923
-
```html{1,10-16,20}
926
+
```html{1,10-16,21}
924
927
@model IEnumerable<ReactDemo.Models.CommentModel>
925
928
@{
926
929
Layout = null;
@@ -937,7 +940,8 @@ In the view, we will accept the list of comments as the model, and use `Html.Rea
0 commit comments