presidential-innovation-fellows/code-gov-web

View on GitHub
src/app/components/policy-guide/docs/overview/overview.component.ts

Summary

Maintainability
A
1 hr
Test Coverage
import { Component, Output, EventEmitter } from '@angular/core';

import { MobileService } from '../../../../services/mobile';

@Component({
  selector: 'overview',
  template: require('./overview.template.html')
})
export class OverviewComponent {

  constructor(private mobileService: MobileService) {
    this.mobileService.hideMenu();
  }
}