6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
import { SmartGridField, type SmartGridFieldProps } from './SmartGridField';
|
|
|
|
export function GridInput(props: SmartGridFieldProps) {
|
|
return <SmartGridField {...props} />;
|
|
}
|