forked from tuvn86/webapp-conversation
feat: init
This commit is contained in:
parent
8acd8f6fbd
commit
97d3a6277d
77 changed files with 5299 additions and 0 deletions
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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue