mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { DateValueAccessor } from './date-value-accessor';
|
|
|
|
@NgModule({
|
|
declarations: [DateValueAccessor],
|
|
exports: [DateValueAccessor],
|
|
})
|
|
export class DateValueAccessorModule {}
|