I would like to know what are the possibilities to create little components in angular, which can be shown up when the data will be parsed. Let's say that we have a file (for example in json):
[{
"name":"John",
"surname:"Doe",
"references":[{
"surname": "One"},{
"surname": "Two"}]
}]
So, I would like to create a component which targets the "surname" node, despite its depth into the tree. Can you suggest a way to implement it? Thanks in advance!