Procházet zdrojové kódy

Listing 19: adding comments - using the custom callback.

Frederic G. MARAND před 9 roky
rodič
revize
54a1dd4320
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      public/scripts/tutorial.js

+ 1 - 1
public/scripts/tutorial.js

@@ -49,7 +49,7 @@ let CommentForm = React.createClass({
     if (!text || !author) {
       return;
     }
-    // TODO send request to the server.
+    this.props.onCommentSubmit({ author: author, text: text });
     this.setState({ author: '', text: '' });
   },
   handleTextChange: function (e) {