mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-05-20 17:11:22 +02:00
15 lines
362 B
JavaScript
15 lines
362 B
JavaScript
|
import { renderDictionaryDetails, renderPartsOfSpeech } from './details';
|
||
|
import { renderWords } from './words';
|
||
|
|
||
|
export function renderAll() {
|
||
|
renderTheme();
|
||
|
renderDictionaryDetails();
|
||
|
renderPartsOfSpeech();
|
||
|
renderWords();
|
||
|
}
|
||
|
|
||
|
export function renderTheme() {
|
||
|
const { theme } = window.currentDictionary.settings;
|
||
|
document.body.id = theme + 'Theme';
|
||
|
}
|