-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.component.ts
35 lines (34 loc) · 1.48 KB
/
app.component.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { Component } from '@angular/core';
import { NavigationComponent } from './components/pages/navigation/navigation.component';
import { MasterheadComponent } from './components/pages/masterhead/masterhead.component';
import { AboutComponent } from './components/pages/about/about.component';
import { GraduationComponent } from './components/pages/graduation/graduation.component';
import { CourseComponent } from './components/pages/course/course.component';
import { FormationCourseComponent } from './components/pages/formationcourse/formationcourse.component';
import { BookComponent } from './components/pages/book/book.component';
import { ContactComponent } from './components/pages/contact/contact.component';
import { FooterComponent } from './components/pages/footer/footer.component';
import { PlaceholderComponent } from '@path-components/utils/placeholder/placeholder.component';
import { LoadingComponent } from '@path-components/utils/loading/loading.component';
import { NgxGoogleAnalyticsModule } from '@hakimio/ngx-google-analytics';
@Component({
selector: 'app-root',
imports: [
NavigationComponent,
MasterheadComponent,
AboutComponent,
GraduationComponent,
CourseComponent,
FormationCourseComponent,
BookComponent,
ContactComponent,
FooterComponent,
PlaceholderComponent,
LoadingComponent,
NgxGoogleAnalyticsModule
],
templateUrl: './app.component.html',
})
export class AppComponent {
title = 'Robson Candido dos Santos Alves';
}