OwenKelvin/Angular-School-Management-System

View on GitHub
src/app/pages/library/edit-book/edit-book.component.ts

Summary

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

@Component({
  selector: 'app-edit-book',
  templateUrl: './edit-book.component.html',
  styleUrls: ['./edit-book.component.less']
})
export class EditBookComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}