Files
FarmMapsLib/src/app/logo/logo.component.ts
Willem Dantuma ab99f6722c
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
Implement menu button
2020-01-08 14:23:24 +01:00

16 lines
319 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-logo',
template: '<span><img src="/images/farmmapslogo.png" /></span>',
styles:['img {max-height:100%;max-width:100%;align-self:center;}']
})
export class LogoComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}