presidential-innovation-fellows/code-gov-web

View on GitHub
src/app/components/help-wanted/card/help-wanted-card.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component, Input } from '@angular/core';
import { ExternalLinkDirective } from '../../directives/external-link.directive';
import { HelpWantedItem } from '../help-wanted-item.model';

@Component({
  selector: 'help-wanted-card',
  styles: [require('./help-wanted-card.styles.scss')],
  template: require('./help-wanted-card.template.html')
})

export class HelpWantedCardComponent {
  @Input() private item: HelpWantedItem;
  @Input() private mobile: string;
}