4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-12 02:05:51 +00:00

9 lines
312 B
JavaScript
Raw Normal View History

import { directive } from 'lit/directive.js'
import { LangChangedDirectiveBase } from './lang-changed-base.js'
export class LangChangedDirective extends LangChangedDirectiveBase {
render(getValue) {
return this.renderValue(getValue)
}
}
export const langChanged = directive(LangChangedDirective)