Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
7 lines
266 B
TypeScript
7 lines
266 B
TypeScript
import type { ReactNode } from 'react'
|
|
|
|
/** Standard horizontal cluster for admin table action icons. */
|
|
const AdminTableActions = ({ children }: { children: ReactNode }) => <div className="flex items-center gap-1">{children}</div>
|
|
|
|
export default AdminTableActions
|