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.
import WechatPay from './WechatPay';
import WechatPayDebug from './WechatPay.debug';
// 微信支付没有沙箱环境,所以staging模式也只能用debug
export default process.env.NODE_ENV === 'production' ? WechatPay : WechatPayDebug;