import Component from 'flarum/Component'; import ItemList from 'flarum/utils/ItemList'; import listItems from 'flarum/helpers/listItems'; /** * The `HeaderPrimary` component displays primary header controls. On the * default skin, these are shown just to the right of the forum title. */ export default class HeaderPrimary extends Component { view() { return ( ); } /** * Build an item list for the controls. * * @return {ItemList} */ items() { return new ItemList(); } }