oak-pay-business/lib/hooks/useFeatures.js

12 lines
369 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = useFeatures;
const web_1 = require("oak-frontend-base/es/platforms/web");
// react 独有
// 这里因为开发时要引用src而AFD定义中引用lib所以有编译的warning. by Xc
function useFeatures() {
// @ts-ignore
return (0, web_1.useFeatures)();
}
;