IntegerMan/angularIF

View on GitHub
src/app/command-area/command-area.component.ts

Summary

Maintainability
A
1 hr
Test Coverage
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'if-command-area',
  templateUrl: './command-area.component.html',
  styleUrls: ['./command-area.component.css']
})
export class CommandAreaComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}