gitextract_8dxt9i05/ ├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── public/ │ └── index.html └── src/ ├── agent.js ├── components/ │ ├── App.js │ ├── Article/ │ │ ├── ArticleActions.js │ │ ├── ArticleMeta.js │ │ ├── Comment.js │ │ ├── CommentContainer.js │ │ ├── CommentInput.js │ │ ├── CommentList.js │ │ ├── DeleteButton.js │ │ └── index.js │ ├── ArticleList.js │ ├── ArticlePreview.js │ ├── Editor.js │ ├── Header.js │ ├── Home/ │ │ ├── Banner.js │ │ ├── MainView.js │ │ ├── Tags.js │ │ └── index.js │ ├── ListErrors.js │ ├── ListPagination.js │ ├── Login.js │ ├── Profile.js │ ├── ProfileFavorites.js │ ├── Register.js │ └── Settings.js ├── constants/ │ └── actionTypes.js ├── index.js ├── middleware.js ├── reducer.js ├── reducers/ │ ├── article.js │ ├── articleList.js │ ├── auth.js │ ├── common.js │ ├── editor.js │ ├── home.js │ ├── profile.js │ └── settings.js └── store.js