Sample todo app in React
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

19 строки
481B

  1. <html>
  2. <head>
  3. <base href="/" />
  4. <title>Scotch Todo</title>
  5. <!--Stylesheet-->
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
  7. <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10. <!--Container for React rendering-->
  11. <div class="container">
  12. <div class="col-md-4 col-md-offset-4">
  13. <div id="container"></div>
  14. </div>
  15. </div>
  16. <!--Bundled file-->
  17. <script src="bundle.js"></script>
  18. </body>
  19. </html>