nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/webassembly/ca/single-cell/single-cell.component.ts

Summary

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

@Component({
  selector: 'slides-single-cell',
  templateUrl: './single-cell.component.html',
  styleUrls: ['./single-cell.component.css']
})
export class SingleCellComponent implements OnInit {
  @Input() single = true;

  constructor() {}

  ngOnInit() {}
}