I'm interested in finding out if I can utilize the same code base for both my Angular 4 web application and an Ionic 3 mobile application that I need to develop.
As someone who is new to Ionic 3, I've been exploring the documentation and discovered that I will need to replace regular HTML tags with Ionic-specific tags (ion-).
My main question is whether, after making these updates, I can use the modified code for both the web and mobile platforms. Will it function as intended? And if so, is this considered a good practice?
What are the advantages and disadvantages of sharing the same code base for both applications?