kalidea/kaligraphi

View on GitHub
src/app/02-form/textarea/textarea.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component, OnInit, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core';

@Component({
  selector: 'app-textarea',
  templateUrl: './textarea.component.html',
  encapsulation: ViewEncapsulation.None,
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class TextareaComponent implements OnInit {
  themes: string;

  disabled: boolean;

  constructor() { }

  ngOnInit() {
  }

}