Ionic React Gotchas
JavaScript expressions not allowed inside tags
- Not allowed:
<IonCard href=
/${props.type}/account//>
- Resolution:
let href: string = `/${props.type}/account/`;
<IonCard href={href} />
Style not allowed inside tags
- Not allowed:
<IonLabel style= />
- Resolution:
- p element inside the Ionic element.
<p style=>