mirror of
https://ghfast.top/https://github.com/discourse/discourse-follow.git
synced 2026-07-16 11:46:25 +08:00
10 lines
470 B
Text
10 lines
470 B
Text
/* eslint-disable ember/no-classic-components, ember/require-tagless-components */
|
|
import Component from "@ember/component";
|
|
import { classNames, tagName } from "@ember-decorators/component";
|
|
import FollowButton from "../../components/follow-button";
|
|
|
|
@tagName("li")
|
|
@classNames("user-card-additional-buttons-outlet", "follow-button-container")
|
|
export default class FollowButtonContainer extends Component {
|
|
<template><FollowButton @user={{this.user}} /></template>
|
|
}
|