Promact/slack-erp-custom-integration-mvc

View on GitHub
Slack.Automation/Promact.Erp.Web/app/leaveReport/leaveReport.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component, OnInit }   from '@angular/core';
import { Router }from '@angular/router';
import { LeaveReportService }   from './leaveReport.service';

@Component({
    template: `
    <router-outlet></router-outlet>
`,
    providers: [LeaveReportService]

})
export class LeaveReportComponent { }