All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.cjs.components.for.for.cjs Maven / Gradle / Ivy

"use strict";
'use strict';

function For(props) {
  const { each, fallback, children } = props;
  if (each?.length === 0) {
    return fallback || null;
  }
  return each?.map(children);
}

exports.For = For;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy