9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
import { initWebauthnAuthenticate, initWebauthnRegister } from './webauthn';
|
|
|
|
export const mount2faAuthentication = () => {
|
|
initWebauthnAuthenticate();
|
|
};
|
|
|
|
export const mount2faRegistration = () => {
|
|
initWebauthnRegister();
|
|
};
|