├── .gitignore ├── Procfile ├── README.md ├── data.js ├── images ├── img1.png ├── img2.png ├── img3.png ├── img4.png ├── img5.png ├── img6.png ├── img7.png ├── img8.png ├── neat.jpg ├── neat2.gif └── neat3.gif ├── index.html ├── model └── comments.js ├── package.json ├── secrets_template.js ├── server.js └── src ├── Comment.js ├── CommentBox.js ├── CommentForm.js ├── CommentList.js ├── index.js └── style.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: react-scripts start 2 | api: nodemon server.js 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/README.md -------------------------------------------------------------------------------- /data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/data.js -------------------------------------------------------------------------------- /images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/img1.png -------------------------------------------------------------------------------- /images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/img2.png -------------------------------------------------------------------------------- /images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/img3.png -------------------------------------------------------------------------------- /images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/img4.png -------------------------------------------------------------------------------- /images/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/img5.png -------------------------------------------------------------------------------- /images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/img6.png -------------------------------------------------------------------------------- /images/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/img7.png -------------------------------------------------------------------------------- /images/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/img8.png -------------------------------------------------------------------------------- /images/neat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/neat.jpg -------------------------------------------------------------------------------- /images/neat2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/neat2.gif -------------------------------------------------------------------------------- /images/neat3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/images/neat3.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/index.html -------------------------------------------------------------------------------- /model/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/model/comments.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/package.json -------------------------------------------------------------------------------- /secrets_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/secrets_template.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/server.js -------------------------------------------------------------------------------- /src/Comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/src/Comment.js -------------------------------------------------------------------------------- /src/CommentBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/src/CommentBox.js -------------------------------------------------------------------------------- /src/CommentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/src/CommentForm.js -------------------------------------------------------------------------------- /src/CommentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/src/CommentList.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryantheastronaut/mernCommentBox/HEAD/src/style.js --------------------------------------------------------------------------------