const masterDetailTemplate = `
`; const masterDetailCollectionTemplate = `
Add Root Item
Cancel
`; export default angular .module('jsonforms-bootstrap.renderers.layouts.masterdetail', ['jsonforms.renderers.layouts', 'jsonforms-bootstrap']) .run(['$templateCache', $templateCache => { $templateCache.put('masterdetail.html', masterDetailTemplate); }]) .run(['$templateCache', $templateCache => { $templateCache.put('masterdetail-collection.html', masterDetailCollectionTemplate); }]) .name;