krishna_sales/src/components/forms/fields/GridInput.tsx
2026-07-22 19:00:00 +05:30

6 lines
176 B
TypeScript

import { SmartGridField, type SmartGridFieldProps } from './SmartGridField';
export function GridInput(props: SmartGridFieldProps) {
return <SmartGridField {...props} />;
}