mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-14 21:28:03 +08:00
template-lint ignores added to workaround bug. Fix is pending release in https://github.com/ember-template-lint/ember-template-lint/pull/3248
10 lines
269 B
Text
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;
|