mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
14 lines
455 B
PHP
14 lines
455 B
PHP
|
@props([
|
||
|
'profileUser',
|
||
|
'authFollowIds' => collect(),
|
||
|
])
|
||
|
|
||
|
<div class="w-full max-w-sm">
|
||
|
<div class="flex w-full max-w-sm">
|
||
|
<livewire:user.follow-card relationship="followers" :profile-user="$profileUser" :auth-follow-ids="$authFollowIds" />
|
||
|
</div>
|
||
|
<div class="flex w-full max-w-sm">
|
||
|
<livewire:user.follow-card relationship="following" :profile-user="$profileUser" :auth-follow-ids="$authFollowIds" />
|
||
|
</div>
|
||
|
</div>
|