Files
dify/web/app/(shareLayout)/chat/[token]/page.tsx

15 lines
345 B
TypeScript
Raw Normal View History

2024-02-04 16:10:46 +08:00
'use client'
2023-05-15 08:51:32 +08:00
import React from 'react'
2024-02-04 16:10:46 +08:00
import ChatWithHistoryWrap from '@/app/components/base/chat/chat-with-history'
2025-07-17 10:52:10 +08:00
import AuthenticatedLayout from '../../components/authenticated-layout'
2023-05-15 08:51:32 +08:00
2024-06-24 12:29:14 +08:00
const Chat = () => {
2023-05-15 08:51:32 +08:00
return (
2025-07-17 10:52:10 +08:00
<AuthenticatedLayout>
<ChatWithHistoryWrap />
</AuthenticatedLayout>
2023-05-15 08:51:32 +08:00
)
}
export default React.memo(Chat)