This question already has an answer here:
I am using Angular 5. I want to call the child component method from parent component. For this I am adding the import {myChildComponent} from './myChild/myChild.component'; //ERROR: Cannot find module ./myChild/myChild.component
How can I import the child component in any other component other than app.component.ts.(here it works)
You can simply call function of child component from parent component using
local variable
in Angular.For example
here
hello
is child component.Working Example
Second way