mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-19 20:04:24 +08:00
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
'use client'
|
|
import React from 'react'
|
|
import ChatWithHistoryWrap from '@/app/components/base/chat/chat-with-history'
|
|
|
|
const Chat = () => {
|
|
return (
|
|
<ChatWithHistoryWrap />
|
|
)
|
|
}
|
|
|
|
export default React.memo(Chat)
|