mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-11 00:08:51 +08:00
24 lines
446 B
HTML
24 lines
446 B
HTML
<!doctype html>
|
|
<head>
|
|
<meta charSet="utf-8" />
|
|
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" />
|
|
|
|
<title>App</title>
|
|
<style>
|
|
html, body, #root {
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="app.bundle.js"></script>
|
|
</body>
|