I am using moment v2.22.0 in angular 5, and this is how I have imported it in module -
import * as moment from 'moment';
and using it in component as -
export class ChatComponent {
.
.
.
public moment: any = moment;
.
.
}
and when I am using it in html template -
<div>{{moment(activeTeam.createdAt).format('LL')}}</div>
it is giving me an error message that -
[Angular] Member 'moment' is not callable
can anyone tell me what I am doing wrong !!