1
0
mirror of https://github.com/flarum/core.git synced 2025-10-15 00:44:40 +02:00

Replace Ember app with Mithril app

This commit is contained in:
Toby Zerner
2015-04-25 22:28:39 +09:30
parent 6f67b8c247
commit b68a4711dc
377 changed files with 5641 additions and 7330 deletions

View File

@@ -0,0 +1,15 @@
import Component from 'flarum/component';
import ItemList from 'flarum/utils/item-list';
import listItems from 'flarum/helpers/list-items';
export default class FooterPrimary extends Component {
view() {
return m('ul.footer-controls', listItems(this.items().toArray()));
}
items() {
var items = new ItemList();
return items;
}
}