i'm confusing of this code. i dont know why this be error. this is the livewire function :
public $members;
public function render()
{
$this->members = "members";
return view('livewire.members');
}
and the view :
<div>
<h1>{{$members}}</h1>
</div>
