1/*
2error TS2554: Expected 2 arguments, but got 1.
3In Angular 8, ViewChild takes 2 parameters
4In Angular 9 default value is static: false, so doesn't need to provide param unless you want to use {static: true}
5*/
6
7@ViewChild(ChildDirective, {static: false}) Component
8
9/*
10I hope it will help you.
11Namaste
12*/