1
0
mirror of https://github.com/flarum/core.git synced 2025-05-16 20:29:46 +02:00
2015-04-25 22:28:39 +09:30

12 lines
312 B
JavaScript

import Component from 'flarum/component';
import listItems from 'flarum/helpers/list-items';
export default class FieldSet extends Component {
view() {
return m('fieldset', {className: this.props.className}, [
m('legend', this.props.label),
m('ul', listItems(this.props.fields))
]);
}
}