Angular project using NgRx pattern to manage state of a system

project-nav-bar.component.ts 342B

123456789101112131415
  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'app-project-nav-bar',
  4. templateUrl: './project-nav-bar.component.html',
  5. styleUrls: ['./project-nav-bar.component.css']
  6. })
  7. export class ProjectNavBarComponent {
  8. onProjectCreate(){}
  9. onProjectsGetAll(){}
  10. onProjectsVsUsersGet(){}
  11. onProjectCompanyAssociated(){}
  12. }

Powered by TurnKey Linux.