<?php

namespace {{ namespace }};

use Filament\Forms\Components\Component;

class {{ class }} extends Component
{
    protected string $view = '{{ view }}';

    public static function make(): static
    {
        return app(static::class);
    }
}
