19 lines
No EOL
311 B
HTML
19 lines
No EOL
311 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>My First React App</title>
|
|
<link rel="stylesheet" href="css/bootstrap.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>My First React App</h1>
|
|
<div id="app"></div>
|
|
</div>
|
|
|
|
<script src="js/app/bundle.js"></script>
|
|
</body>
|
|
|
|
</html> |