You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
376 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'social-friends',
templateUrl: './friends.component.html',
styleUrls: ['./friends.component.sass']
})
export class FriendsComponent implements OnInit {
friends: Array<String> = ["Friend 1", "Friend 2", "Friend 3", "Friend 4", "Friend 5", "Friend 6"]
constructor() { }
ngOnInit() {
}
}