13 lines
214 B
PHP
13 lines
214 B
PHP
<?php
|
|
|
|
namespace App\Twig\Components;
|
|
|
|
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;
|
|
use Symfony\UX\LiveComponent\DefaultActionTrait;
|
|
|
|
#[AsLiveComponent]
|
|
final class Alert
|
|
{
|
|
use DefaultActionTrait;
|
|
}
|