-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
44 lines (41 loc) · 1.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ReactJS CRUD</title>
<meta name="description" content="ReactJS CRUD">
<meta name="keywords" content="ReactJS, crud, form, validation, stores, flux, dispatcher, actions">
<meta name="author" content="Luis Lopez">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/src/css/bulma.css">
</head>
<body>
<section class="hero is-primary">
<div class="hero-body">
<div class="container">
<h1 class="title">
ReactJS CRUD
</h1>
<h2 class="subtitle">
Example ReactJS application for CRUD management.
</h2>
</div>
</div>
</section>
<section class="section">
<div class="columns">
<div id="app" class="column is-half is-offset-one-quarter"></div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p>
<strong>ReactJS CRUD</strong> by <a href="http://luigibyte.com.ar" target="blank">luigibyte</a>
</div>
</div>
</footer>
<script src="/assets/bundle.js" charset="utf-8"></script>
</body>
</html>