Urigo / WhatsApp-Clone-Tutorial

https://www.tortilla.academy/Urigo/WhatsApp-Clone-Tutorial
https://tortilla.academy
565 stars 144 forks source link

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

Closed TuvalSimha closed 5 months ago

TuvalSimha commented 3 years ago
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;