The annotations have to be on top of a class, you can't annotate another annotation:
@Component({...}) class CustomComponent{...} @Page({...}) class CustomPage{...}
What were you trying to achieve with those 2 annotations without a class?
The annotations have to be on top of a class, you can't annotate another annotation:
@Component({...}) class CustomComponent{...} @Page({...}) class CustomPage{...}
What were you trying to achieve with those 2 annotations without a class?