import {IonicPlatform, Page} from 'ionic/ionic'; @Page({ templateUrl: 'buttons/buttons.html', }) export class ButtonsPage { constructor() { } } @Page({ templateUrl: 'buttons/block.html', }) export class BlockButtonsPage { constructor() { } } @Page({ templateUrl: 'buttons/full.html', }) export class FullButtonsPage { constructor() { } } @Page({ templateUrl: 'buttons/outline.html', }) export class OutlineButtonsPage { constructor() { } } @Page({ templateUrl: 'buttons/round.html', }) export class RoundButtonsPage { constructor() { } } @Page({ templateUrl: 'buttons/fab.html', }) export class FabPage { constructor() { } } @Page({ templateUrl: 'buttons/sizes.html', }) export class ButtonSizesPage { constructor() { } } @Page({ templateUrl: 'buttons/icons.html', }) export class IconButtonsPage { constructor() { } }