first commit

This commit is contained in:
2024-04-19 12:53:45 +07:00
commit 71a3a661dc
1943 changed files with 246917 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-navs',
templateUrl: './navs.component.html',
styleUrls: ['./navs.component.css']
})
export class NavsComponent implements OnInit {
public breadcrumb: any;
constructor() { }
ngOnInit() {
this.breadcrumb = {
'mainlabel': 'Navs',
'links': [
{
'name': 'Home',
'isLink': true,
'link': '/dashboard/sales'
},
{
'name': 'Component',
'isLink': true,
'link': '#'
},
{
'name': 'Navs',
'isLink': false
}
]
};
}
}