'use client' import type * as React from 'react' import { cn } from '@admin/utils/shared/cn' function DataGridRow({ className, style, ...props }: React.ComponentProps<'div'>) { return (
) } export { DataGridRow }