File Location

Data
If you’d like to change data present on this screen, please locate this file
src/screens/ChatModule/ChatScreen/ChatScreen.jsLocate the use effect function that uses dummy data inside src/DummyData/ChatDummyData.json to create a message history array
Create/Edit/Delete items and observe how the page changes. You can add more items like this and the page will automatically become scrollable.
"messages": [
{
"username": "sabrina",
"dateSent": 1609244048, // milliseconds since January 1, 1970
"text": "Hello",
"profilePicturePath": "www.website.com/someImage.jpg"
},
...
]
Additional Notes