discourse/app/assets/javascripts/admin/addon/components/form-template/info-header.gjs
David Taylor 46093eddf3
DEV: Bump linting dependencies and fix violations (#32682)
template-lint ignores added to workaround bug. Fix is pending release in https://github.com/ember-template-lint/ember-template-lint/pull/3248
2025-05-12 14:14:07 +01:00

10 lines
269 B
Text

import { i18n } from "discourse-i18n";
const InfoHeader = <template>
<div class="form-templates--info">
<h2>{{i18n "admin.form_templates.title"}}</h2>
<p class="desc">{{i18n "admin.form_templates.help"}}</p>
</div>
</template>;
export default InfoHeader;