Angular project using NgRx pattern to manage state of a system

app.component.ts 228B

12345678910
  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'app-root',
  4. templateUrl: './app.component.html',
  5. styleUrls: ['./app.component.css']
  6. })
  7. export class AppComponent {
  8. title = 'users-projects-companies';
  9. }

Powered by TurnKey Linux.