// ps-content-loader import { Component, OnInit, Input } from "@angular/core"; @Component({ selector: "ps-content-loader", template: '
' + '' + "
", // template: // '
\n' + // '\t\t\t\t\t
\n' + // '\t\t\t\t\t\t
\n' + // '\t\t\t\t\t\t\t
\n' + // '\t\t\t\t\t\t\t
\n' + // '\t\t\t\t\t\t\t
\n' + // '\t\t\t\t\t\t\t
\n' + // '\t\t\t\t\t\t\t
\n' + // "\t\t\t\t\t\t
\n" + // "\t\t\t\t\t
\n" + // "\t\t\t\t
", }) export class PsContenLoaderComponent implements OnInit { @Input() loading: boolean; constructor() {} ngOnInit() {} }