frontend_nyla/src/components/Dashboard/DashboardChat/DashboardChat.tsx
2025-08-21 18:09:19 +02:00

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;