Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Aslemammad committed Dec 6, 2023
1 parent 396d75e commit dce74fc
Show file tree
Hide file tree
Showing 38 changed files with 442 additions and 600 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div class="spinner"></div>
</div>
<!--/placeholder1-->
<script src="/main.tsx" async type="module"></script>
<script src="/src/main.tsx" async type="module"></script>
<!--placeholder2-->
<!--/placeholder2-->
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div class="spinner"></div>
</div>
<!--/placeholder1-->
<script src="/main.tsx" async type="module"></script>
<script src="/src/main.tsx" async type="module"></script>
<!--placeholder2-->
<!--/placeholder2-->
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div class="spinner"></div>
</div>
<!--/placeholder1-->
<script src="/main.tsx" async type="module"></script>
<script src="/src/main.tsx" async type="module"></script>
<!--placeholder2-->
<!--/placeholder2-->
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div class="spinner"></div>
</div>
<!--/placeholder1-->
<script src="/main.tsx" async type="module"></script>
<script src="/src/main.tsx" async type="module"></script>
<!--placeholder2-->
<!--/placeholder2-->
</body>
Expand Down
37 changes: 0 additions & 37 deletions examples/02_async/src/index.html

This file was deleted.

37 changes: 37 additions & 0 deletions examples/03_promise/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Waku example</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
.spinner {
width: 36px;
height: 36px;
margin: auto;
border: 2px solid #ddd;
border-top-color: #222;
border-radius: 50%;
animation: spinner 1s linear infinite;
}
#root > .spinner {
margin-top: calc(50% - 18px);
}
</style>
</head>
<body>
<!--placeholder1-->
<div id="root">
<div class="spinner"></div>
</div>
<!--/placeholder1-->
<script src="/src/main.tsx" async type="module"></script>
<!--placeholder2-->
<!--/placeholder2-->
</body>
</html>
37 changes: 0 additions & 37 deletions examples/03_promise/src/index.html

This file was deleted.

37 changes: 37 additions & 0 deletions examples/04_callserver/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Waku example</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
.spinner {
width: 36px;
height: 36px;
margin: auto;
border: 2px solid #ddd;
border-top-color: #222;
border-radius: 50%;
animation: spinner 1s linear infinite;
}
#root > .spinner {
margin-top: calc(50% - 18px);
}
</style>
</head>
<body>
<!--placeholder1-->
<div id="root">
<div class="spinner"></div>
</div>
<!--/placeholder1-->
<script src="/src/main.tsx" async type="module"></script>
<!--placeholder2-->
<!--/placeholder2-->
</body>
</html>
37 changes: 0 additions & 37 deletions examples/04_callserver/src/index.html

This file was deleted.

37 changes: 37 additions & 0 deletions examples/05_mutation/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Waku example</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
.spinner {
width: 36px;
height: 36px;
margin: auto;
border: 2px solid #ddd;
border-top-color: #222;
border-radius: 50%;
animation: spinner 1s linear infinite;
}
#root > .spinner {
margin-top: calc(50% - 18px);
}
</style>
</head>
<body>
<!--placeholder1-->
<div id="root">
<div class="spinner"></div>
</div>
<!--/placeholder1-->
<script src="/src/main.tsx" async type="module"></script>
<!--placeholder2-->
<!--/placeholder2-->
</body>
</html>
37 changes: 0 additions & 37 deletions examples/05_mutation/src/index.html

This file was deleted.

37 changes: 37 additions & 0 deletions examples/06_nesting/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Waku example</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
.spinner {
width: 36px;
height: 36px;
margin: auto;
border: 2px solid #ddd;
border-top-color: #222;
border-radius: 50%;
animation: spinner 1s linear infinite;
}
#root > .spinner {
margin-top: calc(50% - 18px);
}
</style>
</head>
<body>
<!--placeholder1-->
<div id="root">
<div class="spinner"></div>
</div>
<!--/placeholder1-->
<script src="/src/main.tsx" async type="module"></script>
<!--placeholder2-->
<!--/placeholder2-->
</body>
</html>
37 changes: 0 additions & 37 deletions examples/06_nesting/src/index.html

This file was deleted.

Loading

0 comments on commit dce74fc

Please sign in to comment.