mirror of
https://github.com/dyiop/astute.git
synced 2025-06-18 15:16:04 -04:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.css']
|
|
})
|
|
export class AppComponent {
|
|
title = 'app';
|
|
}
|