presidential-innovation-fellows/code-gov-web

View on GitHub
src/app/components/home/banner-art/banner-art.component.ts

Summary

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

@Component({
  // The selector is what angular internally uses
  // for `document.querySelectorAll(selector)` in our index.html
  // where, in this case, selector is the string 'home'
  selector: 'banner-art',  // <home></home>
  styles: [require('./banner-art.style.scss')],
  template: require('./banner-art.template.html')
})
export class BannerArtComponent {

  constructor() {}
}