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

about.component.ts 324B

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