export const StickyItem = (props: { index: number; height: number; sticky: boolean }) => { return ( {`Scroll-Item-${props.index}-sticky-${props.sticky}`} ); };