"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 = ({ params, }: any) => { return ( ) } export default React.memo(App)