This is parent component :
parent.component.ts ==>
import { Component, OnInit, Input } from '@angular/core';
@Component({
  selector: 'app-parent',
  templateUrl: '<div>
                 <h1>I am the parent</h1>
                 <p>{{textForChild}}</p>
                </div>'
})
export class ParentComponent implements OnInit {
  @Input() textForChild!: string;
  constructor() {}
  ngOnInit(): void { }
}
And this is the app-routing.module.ts ==>
{
    path: '',
    component: ParentComponent,
    children: [
      {
        path: 'children-url',
        loadChildren: () =>
          import('@modules/child.module').then((m) => m.ChildModule),
      }
    ],
  },
\\\\\\\\\\\\\
And This is Child Component :
child.module.ts ==>
const routes: Routes = [
  {
    path: ':id',
    component: ChildComponent,
  },
];
@NgModule({
  declarations: [ChildComponent],
  imports: [RouterModule.forChild(routes)],
})
The question is, 
if I code in child.component.html, how to fill the textForChild above?
 
    