merge with another new account

This commit is contained in:
simon lehericey 2021-10-13 09:26:54 +02:00
parent 19f81b594b
commit ce40e1127d
6 changed files with 59 additions and 3 deletions

View file

@ -2,4 +2,10 @@ import { show, hide } from '@utils';
export function showFusion() {
show(document.querySelector('.fusion'));
hide(document.querySelector('.new-account'));
}
export function showNewAccount() {
hide(document.querySelector('.fusion'));
show(document.querySelector('.new-account'));
}