2025-04-11 08:14:27 +08:00

17 lines
352 B
TypeScript

"use client"
import type { FC } from 'react'
import React from 'react'
import type { IMainProps } from '@/app/components'
import ChatWithHistoryWrapWithCheckToken from '@/app/components/chat-with-history'
const App: FC<IMainProps> = ({
params,
}: any) => {
return (
<ChatWithHistoryWrapWithCheckToken />
)
}
export default React.memo(App)