presidential-innovation-fellows/code-gov-web

View on GitHub
src/app/components/four-oh-four/four-oh-four.component.ts

Summary

Maintainability
A
2 hrs
Test Coverage
import { Component } from '@angular/core';
import { StateService } from '../../services/state';

@Component({
  selector: 'four-oh-four',
  styles: [require('./four-oh-four.style.scss')],
  template: require('./four-oh-four.template.html')
})

export class FourOhFourComponent {
  constructor(public stateService: StateService) {
    this.stateService.set('section', 'four-oh-four');
  }
}