When working with a dynamic number of components, React asks developers to provide a unique key, lest this error is thrown:
Each child in a list should have a unique "key" prop
Say that each child shows a different icon and label based upon some prop. Does the usage of useMemo
here have any impact on performance?