mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 05:36:29 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
16 lines
328 B
Plaintext
16 lines
328 B
Plaintext
import Component from "@ember/component";
|
|
import { tagName } from "@ember-decorators/component";
|
|
|
|
@tagName("")
|
|
export default class AdminNav extends Component {
|
|
<template>
|
|
<div class="admin-controls">
|
|
<nav>
|
|
<ul class="nav nav-pills">
|
|
{{yield}}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</template>
|
|
}
|