3 declare(strict_types=1);
    15     $factory = $DIC->ui()->factory();
    16     $renderer = $DIC->ui()->renderer();
    18     $modal = $factory->modal()->roundtrip(
    20         $factory->legacy(
'See the Close Button in the top right corner.')
    22     $button1 = $factory->button()->standard(
'Show Close Button Demo', 
'#')
    23         ->withOnClick($modal->getShowSignal());
    25     return $renderer->render([$button1, $modal]);