1
0
Fork 0
mirror of https://github.com/Alamantus/Lexiconga.git synced 2025-05-19 16:41:56 +02:00
Lexiconga/src/js/account/index.js

14 lines
312 B
JavaScript
Raw Normal View History

2019-05-13 14:02:10 -06:00
import '../../scss/Account/main.scss';
import { renderLoginForm } from "./render";
import { triggerLoginChanges } from './login';
import { syncDictionary } from './sync';
2019-05-13 14:02:10 -06:00
export function showLoginForm() {
renderLoginForm();
}
export function loginWithToken() {
triggerLoginChanges();
syncDictionary();
2019-05-13 14:02:10 -06:00
}