mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
13 lines
306 B
JavaScript
13 lines
306 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@ember/component';
|
|
import { tagName } from '@ember-decorators/component';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
@tagName('')
|
|
export default class AttributesSection extends Component {}
|