dovrei aver risolto cosi, nel child:
codice:
  private childFeeds;


  @Input() set feeds(value) {
    console.log(value);
    this.childFeeds = value.feeds;
  }


  get feeds() {
    return this.childFeeds;
  }


  ngOnInit(): void {
    console.table(this.childFeeds);
  }