mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
Updates the user follow component to two smaller components. Still needs to be optimized.
9 lines
297 B
PHP
9 lines
297 B
PHP
@props(['profileUserId'])
|
|
|
|
<div class="flex w-full max-w-sm">
|
|
<livewire:user.follow-card relationship="followers" :profile-user-id="$profileUserId" />
|
|
</div>
|
|
<div class="flex w-full max-w-sm">
|
|
<livewire:user.follow-card relationship="following" :profile-user-id="$profileUserId" />
|
|
</div>
|