I am working on react js and would like to add ionic directives inside the react js code. can i do that?
For example: <ion-list>
- Ionic directive
I want to add <ion-list>
inside the react js. please help me on this.
Thanks in advance.
No. <ion-list>
is a angularJS directive and will not work directly in React. You have to create a similar ReactJS component for the same. You have to look into the Ionic source code for this directive and create the same by picking up the html/css and the behavior.