@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
10 lines (9 loc) • 594 B
JavaScript
try {
let e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "9cd11c74-ef1c-4249-8397-c704c7b171c6", e._sentryDebugIdIdentifier = "sentry-dbid-9cd11c74-ef1c-4249-8397-c704c7b171c6");
} catch (e) {}
import { createContext } from "preact";
//#region src/context/StateContext/StateContext.ts
var StateContext = createContext(null);
//#endregion
export { StateContext as t };