@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
18 lines • 546 B
JavaScript
/**
* Copyright (c) ACT, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @prettier
*/
import { createContext } from 'react';
/**
* This is an internal type form the ConfirmProvider. You should use
* the ConfirmProvider rather than referencing this directly.
*/
export var ConfirmContext = createContext(function () {
return Promise.resolve(true);
});
export default ConfirmContext;
//# sourceMappingURL=confirmContext.js.map