Project for DevPleno React course. The goal is to implement a project from scratch which contains a list of comments from the user using React.
Remember that a good React design practice is to create new JS files for each component.
To get started developing right away:
- install all project dependencies with
npm installoryarn install - start the development server with
npm startoryarn start
├── README.md - This file.
├── package.json # npm package manager file. It's unlikely that you'll need to modify this.
├── public
│ ├── favicon.ico # React Icon, You may change if you wish.
│ └── index.html # DO NOT MODIFY
└── src
├── App.css # Styles for your app. Feel free to customize this as you desire.
├── App.js # This is the root of your app. Contains static HTML right now.
│ ├── NewComment # This component add new comments.
│ ├── Comments # This component contains a list of comments
│ │ ├── Comment # This component contains a comment did by user
├── App.test.js # Used for testing. Provided with Create React App. Testing is encouraged, but not required.
├── index.css # Global styles. You probably won't need to change anything here.
└── index.js # You should not need to modify this file. It is used for DOM rendering only.- Alesander Lopes Gonzaga - Initial work - (https://github.com/alesanderlg)
This project is licensed under the MIT License - see the LICENSE.md file for details