10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
template:'<fm-app></fm-app>'
|
|
})
|
|
export class AppRootComponent {
|
|
title = 'FarmMaps';
|
|
}
|