mirror of
https://ghfast.top/https://github.com/discourse/discourse-follow.git
synced 2026-07-15 11:36:38 +08:00
9 lines
381 B
Text
9 lines
381 B
Text
import Component from "@ember/component";
|
|
import { classNames, tagName } from "@ember-decorators/component";
|
|
import FollowButton from "../../components/follow-button";
|
|
|
|
@tagName("li")
|
|
@classNames("user-profile-controls-outlet", "follow-button-container")
|
|
export default class FollowButtonContainer extends Component {
|
|
<template><FollowButton @user={{this.model}} /></template>
|
|
}
|