Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
587 Bytes
import React from 'react';
import ChatsNavbar from './ChatsNavbar';
import ChatsList from './ChatsList';
import styled from 'styled-components';
import { History } from 'history';
import AddChatButton from './AddChatButton';
const Container = styled.div`
height: 100vh;
`;
interface ChatsListScreenProps {
history: History;
}
const ChatsListScreen: React.FC<ChatsListScreenProps> = ({ history }) => (
<Container>
<ChatsNavbar history={history} />
<ChatsList history={history} />
<AddChatButton history={history} />
</Container>
);
export default ChatsListScreen;