I have two components, Component A and Component B, which are not parent-child components but I need to pass data from Component A to Component B.
Example:
Component A.ts has an array of data:
myData: [
{'name':'some a','email':'some <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="630223040e020a0f4d000c0e">[email protected]</a>','grades':{}},
{'name':'some b','email':'some <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="1c7e5c7b717d7570327f7371">[email protected]</a>','grades':{}}
]
I need to pass this myData to Component B.ts