mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 16:35:44 +03:00
14 lines
386 B
JavaScript
14 lines
386 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@ember/component';
|
|
import { classNames, classNameBindings } from '@ember-decorators/component';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
@classNames('json-viewer')
|
|
@classNameBindings('fluidHeight:has-fluid-height')
|
|
export default class JsonViewer extends Component {}
|