I was wondering if simply passing a huge amount of props uses any resources if none of them are actually used.
For example
<MyComponent data={data_10kRecord}/>
VS
<MyComponent data={data_SingleRecord}/>
MyComponent will use only one of the records and it will use it like this:
data[id]
So does the first component use more resources than the second component?