mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-01-14 14:16:04 +00:00
5171209b5d
* feat: add composer component * feat: complete composer component and few minor fixes * feat: add several improvements and new features * fix: change icon button in composer
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>
|
|
}
|