FarmMapsLib/src/app/logo/logo.component.ts
Willem Dantuma 9ebce8e0bb
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
Some refactoring
2019-11-05 17:19:33 +01:00

16 lines
299 B
TypeScript

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