16 lines
299 B
TypeScript
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() {
|
|
}
|
|
|
|
}
|