| 123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <link
- rel="stylesheet"
- href="https://fonts.nibgat.com/ncore.css"
- />
- <title>React Native Web Test</title>
- <style>
- /* Uygulamanın tüm ekrana yayılması için */
- html, body, #app-root {
- height: 100%;
- margin: 0;
- padding: 0;
- display: flex;
- flex-direction: column;
- }
- </style>
- </head>
- <body>
- <div id="app-root"></div>
-
- <script src="/bundle.web.js"></script>
- </body>
- </html>
|