Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Migration: js to tsx] HeaderPrimary.js converted to HeaderPrimary.tsx #4052

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import Component from '../../common/Component';
import ItemList from '../../common/utils/ItemList';
import listItems from '../../common/helpers/listItems';
import type Mithril from 'mithril';

/**
* 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() {
view(): JSX.Element {
return <ul className="Header-controls">{listItems(this.items().toArray())}</ul>;
}

Expand All @@ -16,7 +17,8 @@ export default class HeaderPrimary extends Component {
*
* @return {ItemList<import('mithril').Children>}
*/
items() {
return new ItemList();

items(): ItemList<Mithril.Children> {
return new ItemList<Mithril.Children>();
}
}
Loading