Businesses
Here you will find information about businesses, comments, infinite scroll lib
Comments
<div
id="scrollableDiv"
style={{
height: 408,
overflow: 'auto',
}}
>
<InfiniteScroll
ref={infiniteScrollRef}
dataLength={businessLogs.length}
next={fetchLogs}
hasMore={hasMore}
height={408}
loader={
<Skeleton
avatar
paragraph={{
rows: 1,
}}
active
/>
}
onScroll={handleScroll}
style={{ scrollbarWidth: 'thin', scrollbarColor: '#888 #f1f1f1' }}
>
<LogsList logs={businessLogs} entityName={'businesses'} loading={loading} />
</InfiniteScroll>
</div>Getting logs and comments together in right order
Last updated