import {Profile} from "../../models/interfaces";
import {Component, Input} from 'ng-forward'
@Component({
selector: 'profile-view',
templateUrl: 'app/components/noosfero-profile/profile-view.html'
})
export class ProfileView {
@Input()
profile: Profile
}