mirror of
https://github.com/discourse/DiscoTOC.git
synced 2026-09-18 16:11:37 -04:00
12 lines
395 B
Plaintext
12 lines
395 B
Plaintext
import Component from "@ember/component";
|
|
import { classNames, tagName } from "@ember-decorators/component";
|
|
import TocTimeline from "../../components/toc-timeline";
|
|
|
|
@tagName("div")
|
|
@classNames("below-docs-topic-outlet", "d-toc-wrapper")
|
|
export default class DTocWrapper extends Component {
|
|
<template>
|
|
<TocTimeline @topic={{@outletArgs.topic}} @renderTimeline={{true}} />
|
|
</template>
|
|
}
|