init: 初始化模板项目
This commit is contained in:
9
apps/next/app/user/[id]/page.tsx
Normal file
9
apps/next/app/user/[id]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
'use client'
|
||||
|
||||
import { UserDetailScreen } from 'app/features/user/detail-screen'
|
||||
import { useParams } from 'solito/navigation'
|
||||
|
||||
export default function Page() {
|
||||
const { id } = useParams()
|
||||
return <UserDetailScreen id={id as string} />
|
||||
}
|
||||
Reference in New Issue
Block a user