Get started with react-flip-move CDN

MIT licensed

React Flip Move: High-performance, virtualized list component for large lists with minimal re-renders.

Tags:
  • react
  • react-dom
  • animation
  • magic-move
  • component
  • react-component
  • flip
  • web-animations

Stable version

Copied!

How to start using react-flip-move CDN


import React from 'react';
import FlipMove from 'react-flip-move';

const List = () => {
  const items = Array.from({ length: 20 }, (_, i) => i + 1);

  return (
    <FlipMove enterAnimation="fade" leaveAnimation="fade">
      {items.map((item) => (
        <div key={item}>Item {item}</div>
      ))}
    </FlipMove>
  );
};

export default List;
Copied!
Copied!

All versions