mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
13 lines
196 B
TypeScript
13 lines
196 B
TypeScript
import { Component } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-home',
|
|
templateUrl: 'home.page.html',
|
|
styleUrls: ['home.page.scss'],
|
|
})
|
|
export class HomePage {
|
|
|
|
constructor() {}
|
|
|
|
}
|