UNPKG

cloudux-starter-kit

Version:

Starter kit for UX developers in MediaCentral - NPM package

18 lines (15 loc) 459 B
/** * Copyright 2019-2021 by Avid Technology, Inc. */ import { getLocalization } from './localization'; import l10nData from '../l10n/lang.en.json'; import * as styles from './index.scss'; export default class ApplicationContainer { getTitle() { return 'Your first AVID app title'; } render(element) { element.classList.add(styles.test); element.innerHTML = getLocalization(l10nData)('example-plugin-message'); } }