12 lines
171 B
PHP
12 lines
171 B
PHP
<?php
|
|
|
|
namespace App\Twig\Components;
|
|
|
|
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
|
|
|
|
#[AsTwigComponent]
|
|
class BootstrapModal
|
|
{
|
|
public ?string $id = null;
|
|
}
|