Added routing
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import { Component } from '@angular/core';
|
||||
import {IonicModule} from "@ionic/angular";
|
||||
import {addIcons} from 'ionicons';
|
||||
import {homeOutline, peopleOutline, chatbubblesOutline, statsChartOutline} from 'ionicons/icons';
|
||||
|
||||
addIcons({
|
||||
'home-outline': homeOutline,
|
||||
'people-outline': peopleOutline,
|
||||
'chatbubbles-outline': chatbubblesOutline,
|
||||
'stats-chart-outline': statsChartOutline
|
||||
});
|
||||
|
||||
@Component({
|
||||
selector: 'app-navbar',
|
||||
templateUrl: './navbar.component.html',
|
||||
styleUrls: ['./navbar.component.scss'],
|
||||
imports: [
|
||||
IonicModule
|
||||
]
|
||||
})
|
||||
export class NavbarComponent {
|
||||
}
|
||||
Reference in New Issue
Block a user