How do you load a custom component in ionic 4?
(source : Google)
First create a component
ionic start myProject blank --type=angular
ionic g module components
ionic g component components/myComponent --export
This adds both a declaration and export to the components module for “myComponent”.
...
blog.marvenics.com1 min read