Calendar
A flexible calendar component for angular 4.0+ that can display events on a month, week or day view.
Adding Calendar page in your project
There following steps to add Calendar
First of all, you have to edit in app.module file ,which is located in your-project-name\src\app folder.
Import following files in app.module file
import { CalendarComponent} from './calendar/calendar.component';
Now open app-routing.module.ts file and import this file.
import { CalendarComponent} from './calendar/calendar.component';
After this,add following in routes
{ path: 'calendar', component: CalendarComponent }
Last updated
Was this helpful?