Base de code pour une application electron a base d'angular.

home.component.ts 320B

12345678910111213141516
  1. import { Component, OnInit, ViewEncapsulation } from '@angular/core';
  2. @Component({
  3. selector: 'home',
  4. templateUrl: './home.component.html',
  5. styleUrls: ['./home.component.scss'],
  6. encapsulation: ViewEncapsulation.Native
  7. })
  8. export class HomeComponent implements OnInit {
  9. constructor() { }
  10. ngOnInit() {
  11. }
  12. }