nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/home/home.component.ts

Summary

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

@Component({
  selector: 'kirjs-home',
  templateUrl: './home.component.html',
  styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
  constructor() {}

  ngOnInit() {}
}