19 lines
544 B
HTML
19 lines
544 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title> WEBAPP </title>
|
|
<style>
|
|
/* These styles make the body full-height */
|
|
html, body { height: 100%; }
|
|
/* These styles disable body scrolling if you are using <ScrollView> */
|
|
body { overflow: hidden; }
|
|
/* These styles make the root element full-height */
|
|
#root { display:flex; height:100%; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html> |