mirror of
https://github.com/Raghu-Ch/InventoryManagement.git
synced 2026-02-10 04:13:02 -05:00
16 lines
261 B
TypeScript
16 lines
261 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-home',
|
|
templateUrl: './home.component.html',
|
|
styleUrls: ['./home.component.css']
|
|
})
|
|
export class HomeComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|