app.component.ts 388 B

12345678910111213141516
  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'app-root',
  4. templateUrl: './app.component.html',
  5. styleUrls: ['./app.component.scss']
  6. })
  7. export class AppComponent {
  8. title = 'ditofront';
  9. classe = `export class Transaction {
  10. header: { value: string, icon: string }[] = [];
  11. itens : { name: string, value: string }[] = [];
  12. time : moment.Moment;
  13. }`
  14. }