import React, { FC, PropsWithChildren } from "react"; import { GoodIdContextProvider } from "@gooddollar/web3sdk-v2"; import { NativeBaseProviderProps } from "native-base"; import { GoodIdProvider } from "../apps"; import { GoodUIi18nProvider, NativeBaseProvider } from "../theme"; import { RedirectNoticeProvider } from "../hooks"; const GoodXProvider: FC> = ({ nativeBaseProps, children }) => ( {children} ); export default GoodXProvider;