File size: 452 Bytes
d8cfa7c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import * as React from 'react';
import { WebView } from 'react-native-webview';
import { StyleSheet } from 'react-native';
import Constants from 'expo-constants';

export default function App() {
  return (
    <WebView 
      style={styles.container}
      source={{ uri: 'https://teledrive-web.vercel.app/startup'}}
    />
  );
}

const styles = StyleSheet.create({
  container: {
    
    flex: 1,
    marginTop: Constants.statusBarHeight,
  },
});