<?php
namespace App\View\Components;
use Illuminate\View\Component;
use Illuminate\View\View;
class MainLayout extends Component
{
public function __construct(public string $header)
{
}
/**
* Get the view / contents that represents the component.
*/
public function render(): View
{
return view('layouts.main');
}
}