12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.scss'],
|
|
standalone: false
|
|
})
|
|
export class AppComponent {
|
|
title = 'soil-moisture-monitor';
|
|
}
|