mirror of
https://github.com/status-im/status-web.git
synced 2025-01-11 21:24:34 +00:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
|
import { NavigationContainer } from '@react-navigation/native'
|
||
|
|
||
|
export function NavigationProvider({
|
||
|
children,
|
||
|
}: {
|
||
|
children: React.ReactNode
|
||
|
}) {
|
||
|
return <NavigationContainer>{children}</NavigationContainer>
|
||
|
}
|