updated management service

This commit is contained in:
2025-05-14 22:32:26 +03:00
parent 28c1cd9d63
commit 1560d6e68b
41 changed files with 508 additions and 210 deletions

View File

@@ -0,0 +1,7 @@
import Link from "next/link"
const renderLastRowComponent = (reDirectUrl: string, IconToWrap: any, key: string) => {
return <Link key={key} className="flex items-center gap-2" replace href={reDirectUrl} ><IconToWrap /></Link>
}
export { renderLastRowComponent }