Files
webapp-conversation/app/page.tsx
2023-04-14 20:35:08 +08:00

16 lines
279 B
TypeScript

import type { FC } from 'react'
import React from 'react'
import type { IMainProps } from '@/app/components'
import Main from '@/app/components'
const App: FC<IMainProps> = ({
params,
}: any) => {
return (
<Main params={params} />
)
}
export default React.memo(App)