16

I have this strange error and didn't find anything similar to it .. I'm using ng2-canvas-whiteboard component for a drawing canvas on my website, everything's working perfectly except when i try to get reference to that canvas using :

@ViewChild('canvasWhiteboard') canvasWhiteboard: CanvasWhiteboardComponent;

as the official docs suggested, i'm getting this error :

Failed to compile.

e:/frontend/src/app/components/user/dashboard/dashboard.component.ts (15,2): Cannot find name 'ViewChild'.

Any suggestions ? Thank you

Soufiane Touil
  • 803
  • 2
  • 8
  • 17

1 Answers1

62

You forgot to import ViewChild before using it

import { ViewChild } from '@angular/core'
Pankaj Parkar
  • 134,766
  • 23
  • 234
  • 299