Skip to content
Snippets Groups Projects
privacy.component.ts 327 B
Newer Older
  • Learn to ignore specific revisions
  • import { Component } from '@angular/core';
    import {CustomtextService} from "iqb-components";
    
    @Component({
      templateUrl: './privacy.component.html',
    
        'mat-card {margin: 10px}' //'; background-color: lightgray}'
    
    })
    export class PrivacyComponent {
    
      constructor(
        public cts: CustomtextService
      ) { }
    
    }