12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
import { Component, OnInit } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "app-faaliyet",
|
|
templateUrl: "./faaliyet.component.html",
|
|
styleUrls: ["./faaliyet.component.css"],
|
|
})
|
|
export class FaaliyetComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit() {}
|
|
}
|