import { h } from "@stencil/core";
export const buildElement = (index, key, height, top, renderItem) => {
return (h("div", { key: key, class: "item", style: {
transform: `translate(0px,${top}px)`,
height: `${height}px`,
width: '100%'
} }, renderItem(index)));
};