Reputation: 97
Am trying to modify Personal details page in myaccount, i want to add new input fields, remove some existing input fields, how to achieve this, appreciate your help. Thanks.
Upvotes: 0
Views: 509
Reputation: 239
General way of replacing a CMS component
ng g m your-profile-details
followed by ng g c your-profile-details
extends XXComponent
Run yarn run start
and verify if your component is now in use!
Modify your component HTML to your liking.
Upvotes: 3