You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Import { h } is required
In order to render JSX in Stencil apps, the h() function must be imported from @stencil/core:
+ import { h } from '@stencil/core';
function app() {
return <ion-app></ion-app>
}