16 lines
445 B
TypeScript
16 lines
445 B
TypeScript
import { Component } from '@angular/core';
|
|
import { RouterOutlet } from '@angular/router';
|
|
import { LoadingBarModule } from '@ngx-loading-bar/core';
|
|
|
|
import { NavBarComponent } from './core/nav-bar/nav-bar.component';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.css'],
|
|
imports: [LoadingBarModule, NavBarComponent, RouterOutlet],
|
|
})
|
|
export class AppComponent {
|
|
title = 'app';
|
|
}
|