2023-03-15 12:00:52 -04:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
2023-08-10 21:14:03 -04:00
|
|
|
* SPDX-License-Identifier: BUSL-1.1
|
2023-03-15 12:00:52 -04:00
|
|
|
*/
|
|
|
|
|
|
2018-08-28 01:03:55 -04:00
|
|
|
// 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
|
2018-09-25 12:28:26 -04:00
|
|
|
import Component from '@ember/component';
|
2018-08-28 01:03:55 -04:00
|
|
|
|
2018-09-25 12:28:26 -04:00
|
|
|
export default Component.extend({
|
2018-08-28 01:03:55 -04:00
|
|
|
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
|