Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9f30419367 | |||
| 3a607071db |
@@ -62,6 +62,12 @@ const ListsWidget3: React.FC<Props> = ({dashData, className}) => {
|
|||||||
</span>
|
</span>
|
||||||
<span className='text-muted fw-semibold d-block'>{NewDateTimeFormatter(item?.added)}</span>
|
<span className='text-muted fw-semibold d-block'>{NewDateTimeFormatter(item?.added)}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div className='flex-grow-1'>
|
||||||
|
<span className='text-gray-800 fw-bold fs-6'>
|
||||||
|
Pin
|
||||||
|
</span>
|
||||||
|
<span className='text-muted fw-semibold d-block'>{item?.pin || 'dummy'}</span>
|
||||||
|
</div>
|
||||||
{/* end::Description */}
|
{/* end::Description */}
|
||||||
<span className='badge badge-light-primary fs-8 fw-bold'>status: {item?.status}</span>
|
<span className='badge badge-light-primary fs-8 fw-bold'>status: {item?.status}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ const UserInfoCell: FC<Props> = ({user}) => (
|
|||||||
<a href='#' className='text-gray-800 text-hover-primary mb-1'>
|
<a href='#' className='text-gray-800 text-hover-primary mb-1'>
|
||||||
{user.firstname} {user.lastname}
|
{user.firstname} {user.lastname}
|
||||||
</a>
|
</a>
|
||||||
<span>{user.email}</span>
|
<span>{user.username}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ export type RecentBVNProps = {
|
|||||||
birthdate?: string | null
|
birthdate?: string | null
|
||||||
phone?: string | null
|
phone?: string | null
|
||||||
nationality?: string | null
|
nationality?: string | null
|
||||||
|
pin?: string | null
|
||||||
}[]
|
}[]
|
||||||
|
|
||||||
export type DataProps = {
|
export type DataProps = {
|
||||||
|
|||||||
Reference in New Issue
Block a user