Skip to content

Commit 95537c7

Browse files
committed
fix(schedule-x#119): added propper implements
1 parent fb18240 commit 95537c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/development/src/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, Inject, PLATFORM_ID } from '@angular/core';
1+
import { Component, Inject, OnInit, PLATFORM_ID } from '@angular/core';
22
import { RouterOutlet } from '@angular/router';
33
import { CalendarComponent } from '../../../schedule-x/angular/src/lib/calendar.component';
44
import {
@@ -19,7 +19,7 @@ import { createDragAndDropPlugin } from '@schedule-x/drag-and-drop';
1919
templateUrl: './app.component.html',
2020
styleUrl: './app.component.css',
2121
})
22-
export class AppComponent {
22+
export class AppComponent implements OnInit {
2323
title = 'development';
2424
calendarApp: CalendarApp;
2525
constructor(@Inject(PLATFORM_ID) private platformId: string) {}

0 commit comments

Comments
 (0)