Skip to content

No Carousel Performance Optimization for Large Lists #8

@JakeLin

Description

@JakeLin

With 100+ properties, the Carousel might lag:

// Current: Renders all items
<Carousel>
  {properties.map(p => <PropertyCard property={p} />)}
</Carousel>

// Should support:
<Carousel virtualized> // Virtual scrolling for performance
  {properties.map(p => <PropertyCard property={p} />)}
</Carousel>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions