const booleanTemplate = ` {{vm.label}}
{{errorMessage.msg}}
`; export default angular .module('jsonforms-material.renderers.controls.boolean', []) .run(['$templateCache', $templateCache => { $templateCache.put('boolean.html', booleanTemplate); }]) .name;