Files
eRx/src/app/component/footer-menu/footer-menu.component.ts
T
2022-10-04 12:08:40 -04:00

15 lines
287 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-footer-menu',
templateUrl: './footer-menu.component.html',
styleUrls: ['./footer-menu.component.scss'],
})
export class FooterMenuComponent implements OnInit {
constructor() { }
ngOnInit() {}
}