├── .env
├── src
├── react-app-env.d.ts
├── App.module.css
├── setupTests.ts
├── App.tsx
├── index.css
├── App.test.tsx
├── features
│ ├── auth
│ │ ├── Auth.module.css
│ │ ├── authSlice.ts
│ │ └── Auth.tsx
│ ├── types.ts
│ ├── core
│ │ ├── Core.module.css
│ │ ├── NewPost.tsx
│ │ ├── EditProfile.tsx
│ │ └── Core.tsx
│ └── post
│ │ ├── Post.module.css
│ │ ├── Post.tsx
│ │ └── postSlice.ts
├── app
│ └── store.ts
├── index.tsx
├── logo.svg
└── serviceWorker.ts
├── public
├── favicon.ico
├── logo192.png
├── logo512.png
├── robots.txt
├── manifest.json
└── index.html
├── .gitignore
├── tsconfig.json
├── package.json
└── README.md
/.env:
--------------------------------------------------------------------------------
1 | REACT_APP_DEV_API_URL="http://localhost:8000/"
--------------------------------------------------------------------------------
/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
118 | 119 | { 120 | profiles.find( 121 | (prof) => prof.userProfile === comment.userComment 122 | )?.nickName 123 | } 124 | 125 | {comment.text} 126 |
127 |