zgo/src/app/app.component.ts

14 lines
252 B
TypeScript
Raw Normal View History

2021-10-01 20:10:14 +00:00
import { Component } from '@angular/core';
2021-10-20 20:51:14 +00:00
//import { Post} from './posts/post.model';
2021-10-01 20:10:14 +00:00
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
2021-10-01 20:10:14 +00:00
export class AppComponent {
2022-07-26 16:26:42 +00:00
title = 'ZGo';
2021-10-15 19:14:49 +00:00
2021-10-01 20:10:14 +00:00
}