import { isNodeWithDisplayName } from '../../../utils/react';
import { DATA_LIST_BASE_ITEM_DISPLAY_NAME } from '../constants';
export var isDataListBaseItem = function (child) {
return isNodeWithDisplayName(child, DATA_LIST_BASE_ITEM_DISPLAY_NAME);
};