discourse/app/assets/javascripts/admin/addon/components/admin-section-landing-wrapper.gjs
Martin Brennan 8fc34e9323
DEV: Add a skeleton for section landing page & items (#28477)
We are going to start making section landing pages
for admin for each sidebar section. This lays the framework
with routes and simple components that can be further
refined by a designer, but I have taken the base CSS from
AI which Kris made.

The initial section landing items will be used in AI to replace
the placeholders added in this commit https://github.com/discourse/discourse-ai/pull/813/commits/b8b3c614515b95ad642223a0ac24a37e6976b6bd
2024-10-02 12:19:38 +10:00

7 lines
186 B
Text

const AdminSectionLandingWrapper = <template>
<div class="admin-section-landing-wrapper" ...attributes>
{{yield}}
</div>
</template>;
export default AdminSectionLandingWrapper;