11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
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'));
|
|
}
|