Collection view is very slow for large collections because it generates a row for every item, resulting in thousands of elements being created.
Reuse the code from https://github.com/framer/plugins/blob/main/plugins/renamer/src/components/Results.tsx where I implemented a similar virtual list a few months ago.
Collection view is very slow for large collections because it generates a row for every item, resulting in thousands of elements being created.
Reuse the code from https://github.com/framer/plugins/blob/main/plugins/renamer/src/components/Results.tsx where I implemented a similar virtual list a few months ago.