gitextract_e9r3kx80/ ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── .travis.yml ├── README.md ├── example/ │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ └── manifest.json │ ├── src/ │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── components/ │ │ │ ├── AdvancedComponent.tsx │ │ │ ├── ClassComponent.tsx │ │ │ ├── CustomComponent.tsx │ │ │ ├── DefaultComponent.tsx │ │ │ └── LogInComponent.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ └── setupTests.ts │ └── tsconfig.json ├── package.json ├── packageold.json ├── src/ │ ├── .eslintrc │ ├── Index.scss │ ├── components/ │ │ ├── CommentSectionComponent/ │ │ │ ├── CommentSection.css │ │ │ ├── Index.tsx │ │ │ └── NoComments.tsx │ │ ├── CommentStructure.tsx/ │ │ │ ├── CommentStructure.scss │ │ │ ├── DeleteModal.tsx │ │ │ ├── Index.tsx │ │ │ └── ModalStyles.tsx │ │ ├── InputField/ │ │ │ ├── AdvancedInput.tsx │ │ │ ├── EmojiInput.tsx │ │ │ ├── Index.tsx │ │ │ ├── InputField.scss │ │ │ ├── InputFieldStyles.tsx │ │ │ └── RegularInput.tsx │ │ ├── LoginSection/ │ │ │ ├── LoginSection.scss │ │ │ └── LoginSection.tsx │ │ ├── ModalStyles.tsx │ │ └── data.json │ ├── context/ │ │ └── Provider.tsx │ ├── index.test.tsx │ ├── index.tsx │ ├── react-app-env.d.ts │ └── typings.d.ts ├── tsconfig.json └── tsconfig.test.json