17 lines
352 B
TypeScript
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)
|