uswds_blb_configuration-1.0.0-beta2/src/Element/Container.php
src/Element/Container.php
<?php
namespace Drupal\uswds_blb_configuration\Element;
use Drupal\Core\Render\Element\RenderElementBase;
/**
* Provides a container wrapper element.
*
* @RenderElement("uswds_container")
*/
class Container extends RenderElementBase {
/**
* {@inheritdoc}
*/
public function getInfo() {
return [
'#theme' => 'uswds_container',
'#attributes' => [],
'#children' => [],
];
}
}
