mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-08 17:32:27 +08:00
16 lines
279 B
TypeScript
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)
|