feat: frontend
This commit is contained in:
15
ordr-ui/app/users/[page]/page.tsx
Normal file
15
ordr-ui/app/users/[page]/page.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
'use client'
|
||||
import { useParams } from 'next/navigation'
|
||||
import { UserTable } from '@/app/components/UserTable'
|
||||
|
||||
const Users = () => {
|
||||
const {page} = useParams()
|
||||
|
||||
return (
|
||||
<>
|
||||
<UserTable page={parseInt(page as string)} />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default Users
|
||||
Reference in New Issue
Block a user