Perfect_Draft-App_Test-reac.../App.tsx

20 lines
331 B
TypeScript
Raw Permalink Normal View History

/**
* 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';
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
</>
);
}
export default App;