mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-20 05:23:10 -05:00
7 lines
222 B
TypeScript
7 lines
222 B
TypeScript
import { PortalProvider } from "@gorhom/portal";
|
|
import type { ReactNode } from "react";
|
|
|
|
export const NativeProviders = ({ children }: { children: ReactNode }) => {
|
|
return <PortalProvider>{children}</PortalProvider>;
|
|
};
|