mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import React, { ReactNode } from 'react';
|
|
|
|
interface NavigationProviderProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const NavigationProvider: React.FC<NavigationProviderProps> = ({ children }) => {
|
|
return <>{children}</>;
|
|
};
|