Sengi-Windows-MacOS-Linux/src/app/components/toot/toot.component.ts

18 lines
356 B
TypeScript

import { Component, OnInit, Input } from "@angular/core";
import { TootWrapper } from "../../models/stream.models";
@Component({
selector: "app-toot",
templateUrl: "./toot.component.html",
styleUrls: ["./toot.component.css"]
})
export class TootComponent implements OnInit {
@Input() toot: TootWrapper;
constructor() { }
ngOnInit() {
}
}