Skip to content

Commit 2ff2071

Browse files
deploy stable code
1 parent 857b23f commit 2ff2071

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Todo List TS</title>
7+
<title>MyTodo</title>
88
</head>
99
<body>
1010
<div id="root"></div>

src/App.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ hr {
8686
border-top: 1px solid #d1d5db;
8787
}
8888

89+
hr+p {
90+
font-style: italic;
91+
text-align: center;
92+
}
93+
8994
li {
9095
list-style-type: none;
9196
background: #f8f9fa;

src/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ const App = () => {
3434

3535
<hr />
3636

37+
{todos.length === 0 && <p>No tasks found</p>}
3738
<ul>
3839
{todos.map(task => (
3940
<li key={task.id} >

0 commit comments

Comments
 (0)