Files
tiago.kayaya 2c766015e7 -style approve entents for desktop finished
-style expedient  for desktop ongoing
2021-03-18 16:30:03 +01:00

17 lines
325 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'app-empty-container',
templateUrl: './empty-container.page.html',
styleUrls: ['./empty-container.page.scss'],
})
export class EmptyContainerPage implements OnInit {
@Input() texto:string;
constructor() { }
ngOnInit() {
}
}