Im using stackblitz code editor and im trying to implement calendar in my app using angular materials but got this error.
here's the link https://stackblitz.com/edit/angular-ivy-2ucboy?file=src/app/app.component.ts
Im using stackblitz code editor and im trying to implement calendar in my app using angular materials but got this error.
here's the link https://stackblitz.com/edit/angular-ivy-2ucboy?file=src/app/app.component.ts
For some reason, you are bootstrapping your app in
main.ts
? That's why your actualapp.module.ts
file is redundant. You need to import the relevant modules into yourmain.ts
file, as that is where yourAppModule
is declared.See this working demo.