mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-26 02:06:38 +08:00
feat: init
This commit is contained in:
15
app/page.tsx
Normal file
15
app/page.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user