I am trying to use Angular readymade pipe (i.e. date, uppercase) in my Ionic project within a component, but it gives an error.
I have a component folder inside the src/app folder. The components are each in their own folder with scss, html, and ts files.
<div class="day">
{{ day | date }}
</div>
<div class="month">
{{ month | uppercase }}
</div>
Do I have to import the DateModule somewhere?