score:1

i think you can do it this way:

const item = usememo( props => {
    return (
        //...your jsx code here.
    )
}, []);

[...2000].map(props => <item {...props}>);

Related Query

More Query from same tag