mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-20 13:35:28 +00:00
17 lines
473 B
HTML
17 lines
473 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" style="height:100%">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>React Native examples</title>
|
|
<meta name="viewport" content="initial-scale=1.0,width=device-width">
|
|
<style>
|
|
html, body { height: 100%; width: 100%; overflow: hidden; }
|
|
.root { height: 100%; overflow: hidden; }
|
|
</style>
|
|
</head>
|
|
<body style="height:100%">
|
|
<div id="root" style="display:flex;height:100%"></div>
|
|
<script src="./bundle.js"></script>
|
|
</body>
|
|
</html>
|