1
0
mirror of https://github.com/flarum/core.git synced 2025-10-11 15:04:25 +02:00
Files
php-flarum/ember/app/components/ui/field-set.js
2015-03-28 15:43:57 +10:30

14 lines
241 B
JavaScript

import Ember from 'ember';
/**
A set of fields with a heading.
*/
export default Ember.Component.extend({
layoutName: 'components/ui/field-set',
tagName: 'fieldset',
classNameBindings: ['className'],
label: '',
fields: []
});