mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
16 lines
257 B
PHP
16 lines
257 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Posts;
|
|
|
|
use App\Models\Comment as PostComment;
|
|
use Livewire\Component;
|
|
|
|
class Comment extends Component
|
|
{
|
|
public PostComment $comment;
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.posts.comment');
|
|
}
|
|
}
|