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 one step before, so import the ChatsList should be from ChatsListScreen folder.
import ChatsList from './components/ChatsListScreen/ChatsList';
const ChatsListScreen: React.FC = () => (
<div>
<ChatsNavbar />
<ChatsList />
</div>
);
export default ChatsListScreen;