refactor components to be in a registry.

This commit is contained in:
Keegan
2016-02-01 14:56:47 -08:00
parent 7e3dbfa148
commit bca1975d8e
22 changed files with 126 additions and 94 deletions
+11
View File
@@ -0,0 +1,11 @@
'use strict';
module.exports = {
name: 'radiogroup',
template: require('../../templates/items/radiogroup.tpl'),
manipulator: require('../lib/manipulators').radiogroup,
defaults: {
label: '',
options: []
}
};