2019-11-09 14:20:21 -06:00

15 lines
267 B
TypeScript

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