mediawiki-skins-Vector/includes/Components/VectorComponentStickyHeader.php
Jon Robson dba4fa6265 Setup placeholder components to guide future development
As we build out these components further we should be encouraging using
the component system rather than the SkinVector function calls.
This allows us a way to gradually move code over as needed.

Bug: T322089
Change-Id: I7b38ae5b6fe2aa42759ae482e7647a26fcedfc38
2022-12-07 18:58:06 +00:00

16 lines
253 B
PHP

<?php
namespace MediaWiki\Skins\Vector\Components;
/**
* VectorComponentStickyHeader component
*/
class VectorComponentStickyHeader implements VectorComponent {
/**
* @inheritDoc
*/
public function getTemplateData(): array {
return [];
}
}