feat(rn,welcome) React Navigation drawer

This commit is contained in:
Calinteodor
2021-11-11 16:32:56 +02:00
committed by GitHub
parent f5cdd5fca1
commit 4e2fea1e12
63 changed files with 1137 additions and 1100 deletions

View File

@@ -0,0 +1,28 @@
// @flow
import React from 'react';
import WebView from 'react-native-webview';
import JitsiScreen from './JitsiScreen';
type Props = {
/**
* The URL to display.
*/
source: string,
/**
* The component's external style.
*/
style: Object
}
const JitsiScreenWebView = ({ source, style }: Props) => (
<JitsiScreen
style = { style }>
<WebView source = {{ uri: source }} />
</JitsiScreen>
);
export default JitsiScreenWebView;