ChatUIPro / app /page.tsx
dorkai's picture
Add app files
a9df3bb
raw
history blame contribute delete
279 Bytes
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)