Files
shop-admin/src/pages/seller/components/ProductRequestDetailModal.tsx
T
2025-10-12 11:38:23 +03:30

29 lines
788 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { type FC } from 'react'
import DefaulModal from '@/components/DefaulModal'
import { type ProductRequest } from '../types/Types'
interface Props {
open: boolean
close: () => void
request: ProductRequest | null
}
const ProductRequestDetailModal: FC<Props> = ({ open, close, request }) => {
if (!request) return null
return (
<DefaulModal
open={open}
close={close}
isHeader={true}
title_header="جزئیات درخواست ایجاد محصول"
width={800}
>
<div className="space-y-6 mt-4">
<p>در حال حاضر این modal در حال توسعه است.</p>
</div>
</DefaulModal>
)
}
export default ProductRequestDetailModal