mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-21 05:54:19 +08:00
15 lines
328 B
Text
Vendored
15 lines
328 B
Text
Vendored
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>
|
|
}
|