all files / addon/components/ wrapper-element.js

100% Statements 0/0
100% Branches 0/0
100% Functions 0/0
100% Lines 0/0
1 2 3 4 5 6 7 8 9 10 11 12                       
import Component from '@ember/component';
import layout from '../templates/components/wrapper-element';
 
/**
 * This is a simple utility component that lets us do things like wrap block content
 * in a conditional element, since `tagName` can't be a computed property.
 */
export default Component.extend({
  layout,
});