|
@@ -1,3 +1,23 @@
|
|
|
|
+let CommentList = React.createClass({
|
|
|
|
+ render: function () {
|
|
|
|
+ return (
|
|
|
|
+ <div className="commentList">
|
|
|
|
+ Hello, world! I am a CommentList.
|
|
|
|
+ </div>
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+});
|
|
|
|
+
|
|
|
|
+let CommentForm = React.createClass({
|
|
|
|
+ render: function () {
|
|
|
|
+ return (
|
|
|
|
+ <div className="commentForm">
|
|
|
|
+ Hello, world! I am a CommentForm.
|
|
|
|
+ </div>
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+});
|
|
|
|
+
|
|
let CommentBox = React.createClass({
|
|
let CommentBox = React.createClass({
|
|
render: function () {
|
|
render: function () {
|
|
return (
|
|
return (
|