order detail
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-07-17 20:18:59 +03:30
parent dcb2c1326c
commit a5724369da
16 changed files with 481 additions and 105 deletions
+8
View File
@@ -2,6 +2,7 @@ import { useState, type FC } from 'react'
import { Link } from 'react-router-dom'
import { useGetUsers } from './hooks/useUserData'
import Table from '@/components/Table'
import PresignedImage from '@/components/PresignedImage'
import moment from 'moment-jalaali'
import Button from '@/components/Button'
import { AddSquare, Edit } from 'iconsax-react'
@@ -27,6 +28,13 @@ const UsersList: FC = () => {
<Table
columns={[
{
key: 'avatarUrl',
title: 'آواتار',
render: (item) => item.avatarUrl
? <PresignedImage src={item.avatarUrl} className='w-10 h-10 rounded-full object-cover' alt='' />
: '-',
},
{
key: 'fullName',
title: 'نام و نام خانوادگی',