@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
9 lines (8 loc) • 429 B
JavaScript
import * as React from 'react';
import Box from '@mui/material/Box';
import AppDrawer from './AppDrawer';
import ChatHistory from './ChatHistory';
const HistoryAppDrawer = ({ className }) => (React.createElement(AppDrawer, { className: className },
React.createElement(Box, { display: "flex", flexDirection: "column", height: 500 },
React.createElement(ChatHistory, null))));
export default HistoryAppDrawer;