Reference Source

src/app/bookshelf/bookshelf.component.ts

import { Component, OnInit } from '@angular/core';

/**
 * 積読本棚画面
 */
@Component({
  selector: 'app-bookshelf',
  templateUrl: './bookshelf.component.html',
  styleUrls: ['./bookshelf.component.css']
})
export class BookshelfComponent implements OnInit {
  constructor() {}
  ngOnInit() {}
}