- Install Moment in your app
1
npm install moment --save
- Import Moment in the component TS file where you plan to use it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, OnInit, Input, DoCheck, KeyValueDiffers } from '@angular/core'; | |
import { FormControl } from '@angular/forms'; | |
import { PermitCard } from '../permit-card'; | |
import * as moment from 'moment'; |