Angular Error: "mat-form-field' is not a known element"

284 views Asked by At

Im using stackblitz code editor and im trying to implement calendar in my app using angular materials but got this error.

enter image description here

here's the link https://stackblitz.com/edit/angular-ivy-2ucboy?file=src/app/app.component.ts

1

There are 1 answers

2
ViqMontana On

For some reason, you are bootstrapping your app in main.ts? That's why your actual app.module.ts file is redundant. You need to import the relevant modules into your main.ts file, as that is where your AppModule is declared.

See this working demo.