#include namespace psemek::ui::impl { util::span const> component::children() const { return {}; } geom::box const & component::shape() const { return shape_; } void component::reshape(geom::box const & new_shape) { shape_ = new_shape; } react::value component::size_constraints() const { static react::value const result{size_constraints::max()}; return result; } }