-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
I guess I need internet to use npm or npx? | ||
|
||
So I need to created init the dir in old fashion way | ||
|
||
I guess I need internet to use React itself???? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="styles.css"> | ||
<script src="script.js" defer></script> | ||
<title>Todo App</title> | ||
</head> | ||
<body> | ||
|
||
<div class="todo-box"> | ||
<div class="todo-item"> | ||
<h1>Do this 1</h1> | ||
</div> | ||
|
||
<div class="todo-item"> | ||
<h1>Do this 2</h1> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
|
||
.todo-box { | ||
border: 0.4rem solid; | ||
} | ||
|
||
.todo-item { | ||
border: 0.2rem dashed; | ||
padding: 0.1rem 1rem; | ||
margin: 1rem; | ||
} |