mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-15 04:21:49 -05:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
const templateUrl = require('~components/utility/divider.partial.html');
|
|
|
|
function atPanelBody () {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
templateUrl,
|
|
scope: false
|
|
};
|
|
}
|
|
|
|
export default atPanelBody;
|