2023-12-19 13:04:39 +00:00
|
|
|
/**
|
|
|
|
* Sample React Native App
|
|
|
|
* https://github.com/facebook/react-native
|
|
|
|
*
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
2023-12-19 14:05:41 +00:00
|
|
|
import { WebView } from 'react-native-webview';
|
2023-12-19 13:04:39 +00:00
|
|
|
|
|
|
|
function App(): React.JSX.Element {
|
|
|
|
return (
|
2023-12-19 14:05:41 +00:00
|
|
|
<>
|
2023-12-19 14:22:24 +00:00
|
|
|
<WebView source={{ uri: 'https://www.perfectdraft.com.br/' }} />
|
2023-12-19 14:05:41 +00:00
|
|
|
</>
|
2023-12-19 13:04:39 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|