Skip to content

Commit 9fc5e7c

Browse files
committed
init
0 parents  commit 9fc5e7c

9 files changed

+8646
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.json]
12+
insert_final_newline = ignore

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.DS_Store
3+
*.log
4+
dist

favicon.ico

119 KB
Binary file not shown.

index.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<link
8+
href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,700&display=swap"
9+
rel="stylesheet"
10+
/>
11+
<link
12+
href="/styles.css"
13+
rel="stylesheet"
14+
/>
15+
<title>ReactTraining Workshop</title>
16+
</head>
17+
<body>
18+
<div id="root"></div>
19+
<script src="/dist/app.js"></script>
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)