12 lines
421 B
JavaScript
12 lines
421 B
JavaScript
|
// THIS COMPONENT IS ONLY FOR EXTENDING
|
||
|
// You should use this component if you want to use outerHTML symantics
|
||
|
// in your components - this is the default for upcoming Glimmer components
|
||
|
import Ember from 'ember';
|
||
|
|
||
|
export default Ember.Component.extend({
|
||
|
tagName: '',
|
||
|
});
|
||
|
|
||
|
// yep! that's it, it's more of a way to keep track of what components
|
||
|
// use tagless semantics to make the upgrade to glimmer components easier
|