index.html 341 B

123456789101112
  1. <!-- examples/src/index.html -->
  2. <html>
  3. <head>
  4. <title>My First React Component</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. </head>
  8. <body style="margin:0;">
  9. <div id="root"></div>
  10. <script src="bundle.js"></script> <!-- 这句十分重要 -->
  11. </body>
  12. </html>