@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
17 lines (13 loc) • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var calculateRowPlacement = function calculateRowPlacement(childIndex, columnsCount, rowsCount) {
if (rowsCount === 1) {
return 1;
}
return Math.ceil(childIndex / columnsCount);
};
var _default = calculateRowPlacement;
exports.default = _default;