WhatsApp-Clone-Tutorial icon indicating copy to clipboard operation
WhatsApp-Clone-Tutorial copied to clipboard

[Client Step 1.7] change src/components/ChatsListScreen/index.tsx

Open TuvalSimha opened this issue 3 years ago • 0 comments

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;

TuvalSimha avatar Mar 06 '21 18:03 TuvalSimha