mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +01:00
12 lines
365 B
TypeScript
12 lines
365 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
import { NbCalendarDayCellComponent } from '@nebular/theme';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'ngx-day-cell',
|
||
|
|
templateUrl: 'day-cell.component.html',
|
||
|
|
styleUrls: ['day-cell.component.scss'],
|
||
|
|
host: { '(click)': 'onClick()', 'class': 'day-cell' },
|
||
|
|
})
|
||
|
|
export class DayCellComponent extends NbCalendarDayCellComponent<Date> {
|
||
|
|
}
|