21 lines
No EOL
584 B
TypeScript
21 lines
No EOL
584 B
TypeScript
import React from "react";
|
|
import { DashboardChatProps } from "./dashboardChatAreaTypes";
|
|
import DashboardChatArea from './DashboardChatArea.tsx';
|
|
|
|
import styles from './DashboardChatAreaStyles/DashboardChat.module.css';
|
|
|
|
const DashboardChat: React.FC<DashboardChatProps> = ({
|
|
workflowState,
|
|
workflowActions
|
|
}) => {
|
|
return (
|
|
<div className={styles.dashboard_chat}>
|
|
<DashboardChatArea
|
|
workflowState={workflowState}
|
|
workflowActions={workflowActions}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default DashboardChat; |