"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' import '@ant-design/v5-patch-for-react-19'; const App: FC = ({ params, }: any) => { return ( ) } export default React.memo(App)