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.tsfile is redundant. You need to import the relevant modules into yourmain.tsfile, as that is where yourAppModuleis declared.See this working demo.