nycJSorg/angular-presentation

View on GitHub
libs/browser/src/lib/browser-window/browser-window.component.ts

Summary

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

@Component({
  selector: 'preview-browser-window',
  templateUrl: './browser-window.component.html',
  styleUrls: ['./browser-window.component.css']
})
export class BrowserWindowComponent implements OnInit {
  @Input() height = '';
  @Input() url = 'http://localhost:4200/';

  constructor() {}

  ngOnInit() {}
}