WhatsApp-Clone-Tutorial
WhatsApp-Clone-Tutorial copied to clipboard
https://www.tortilla.academy/Urigo/WhatsApp-Clone-Tutorial
// Jest Snapshot v1, https://goo.gl/fbAQLP -- | 2 | | 3 | exports[`Query.chats should fetch all chats 1`] = ` | 4 | Object { | 5 | "chats": Array...
https://github.com/Urigo/WhatsApp-Clone-Tutorial/assets/136796752/2d9472fa-dd66-4c9a-bf60-772f3ab94920 ```tsx import React from 'react'; import { chats } from '../../db'; const ChatsList: React.FC = () => ( {chats.map((chat) => ( {chat.name} ))} ); export default ChatsList; ```
Can you Please add Open Source License if its a Open Source as its Mentioned in your Youtube that its a open source Please Note: As per Github without License...
```tsx import React from 'react'; //We change the path one step before, so import the ChatsNavbar should be from ChatsListScreen folder. import ChatsNavbar from './components/ChatsListScreen/ChatsNavbar'; // //We change the path...
When we type a new chat and click send the UI doesn't update. We are only able to see the new message after hitting refresh.
Lack of tests/global-setup.ts given in the tutorial, have to navigate to github to get the code
By using `yarn add moment`, yarn will/might automatically change `tsconfig.json` to "correct" the item: => `"jsx": "react"` into => `"jsx": "react-jsx"` which in turn will cause React error: `error TS6046:...
Hello there. I'm trying to follow the tutorial. Although I'm not a beginner, I've changed career some years ago so I'm not coding as much as I used to, at...
I cloned the final repository for both server and client and run the necessary yarn installs and tests and everything passes. Now when I run yarn start, this error message...