Skip to content

Commit b904e10

Browse files
author
Vlad Balin
committed
Added HTML pages
1 parent 5465937 commit b904e10

File tree

8 files changed

+120
-0
lines changed

8 files changed

+120
-0
lines changed

dist/collection.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Collection Example</title>
7+
</head>
8+
<body>
9+
10+
<div id="react-application"></div>
11+
12+
<!-- Scripts here. Don't remove ↓ -->
13+
<script src="js/collection.js"></script>
14+
</body>
15+
</html>

dist/form.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Form example</title>
7+
</head>
8+
<body>
9+
10+
<div id="react-application"></div>
11+
12+
<!-- Scripts here. Don't remove ↓ -->
13+
<script src="js/form.js"></script>
14+
</body>
15+
</html>

dist/manytomany.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Many-to-many relationship example</title>
7+
</head>
8+
<body>
9+
10+
<div id="react-application"></div>
11+
12+
<!-- Scripts here. Don't remove ↓ -->
13+
<script src="js/manytomany.js"></script>
14+
</body>
15+
</html>

dist/multipage.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Multipage application exaplme</title>
7+
</head>
8+
<body>
9+
10+
<div id="react-application"></div>
11+
12+
<!-- Scripts here. Don't remove ↓ -->
13+
<script src="js/multipage.js"></script>
14+
</body>
15+
</html>

dist/paging.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Paging Example</title>
7+
</head>
8+
<body>
9+
10+
<div id="react-application"></div>
11+
12+
<!-- Scripts here. Don't remove ↓ -->
13+
<script src="js/paging.js"></script>
14+
</body>
15+
</html>

dist/recursive.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Recursive data structure and transaction control example</title>
7+
</head>
8+
<body>
9+
10+
<div id="react-application"></div>
11+
12+
<!-- Scripts here. Don't remove ↓ -->
13+
<script src="js/recursive.js"></script>
14+
</body>
15+
</html>

dist/validation.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Form validation example</title>
7+
</head>
8+
<body>
9+
10+
<div id="react-application"></div>
11+
12+
<!-- Scripts here. Don't remove ↓ -->
13+
<script src="js/validation.js"></script>
14+
</body>
15+
</html>

dist/welcome.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Welcome</title>
7+
</head>
8+
<body>
9+
10+
<div id="react-application"></div>
11+
12+
<!-- Scripts here. Don't remove ↓ -->
13+
<script src="js/welcome.js"></script>
14+
</body>
15+
</html>

0 commit comments

Comments
 (0)