Created
December 6, 2016 15:34
-
-
Save DWS-paris/5023ef62aa2fc9e6ac36ce545d7d2ae4 to your computer and use it in GitHub Desktop.
Contrôleur d'une page type #ionic2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import de la class permettant de créer un composant | |
import { Component } from '@angular/core'; | |
// Décorateur du composant | |
@Component({ | |
selector: 'home-page', | |
templateUrl: 'app.homepage.html' | |
}) | |
// Export de la class du composant | |
export class AppHomepage { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment