dify
This commit is contained in:
14
dify/web/app/(shareLayout)/chatbot/[token]/page.tsx
Normal file
14
dify/web/app/(shareLayout)/chatbot/[token]/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
'use client'
|
||||
import React from 'react'
|
||||
import EmbeddedChatbot from '@/app/components/base/chat/embedded-chatbot'
|
||||
import AuthenticatedLayout from '../../components/authenticated-layout'
|
||||
|
||||
const Chatbot = () => {
|
||||
return (
|
||||
<AuthenticatedLayout>
|
||||
<EmbeddedChatbot />
|
||||
</AuthenticatedLayout>
|
||||
)
|
||||
}
|
||||
|
||||
export default React.memo(Chatbot)
|
||||
Reference in New Issue
Block a user