Back to home page

EIC code displayed by LXR

 
 

    


Warning, /firebird/firebird-ng/src/app/app.component.ts is written in an unsupported language. File is not indexed.

0001 import { Component } from '@angular/core';
0002 import { RouterOutlet, RouterModule, Router} from '@angular/router';
0003 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
0004 import {BehaviorSubject, Subject} from "rxjs";
0005 import {IoOptionsComponent} from "./components/io-options/io-options.component";
0006 import {PhoenixUIModule} from "phoenix-ui-components";
0007 @Component({
0008   selector: 'app-root',
0009   standalone: true,
0010     imports: [RouterOutlet, RouterModule, IoOptionsComponent, PhoenixUIModule],
0011   templateUrl: './app.component.html',
0012   styleUrl: './app.component.scss'
0013 })
0014 export class AppComponent {
0015   title = 'Firebird';
0016 }