Skip to content

Commit 3346238

Browse files
committed
Create template table
1 parent fab7d5e commit 3346238

File tree

1 file changed

+29
-7
lines changed

1 file changed

+29
-7
lines changed

react-todos/src/App.js

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,35 @@
1-
import './App.css';
1+
import "./App.css";
22

33
function App() {
44
return (
5-
<div className="App">
6-
<header className="App-header">
7-
<p>
8-
Demo App
9-
</p>
10-
</header>
5+
<div>
6+
<div>
7+
<div>Your Todo's</div>
8+
<div>
9+
<table>
10+
<thead>
11+
<tr>
12+
<th scope="col">#</th>
13+
<th scope="col">Description</th>
14+
<th scope="col">Assigned</th>
15+
</tr>
16+
</thead>
17+
<tbody>
18+
<tr>
19+
<th scope="row">1</th>
20+
<td>Feed dog</td>
21+
<td>Eric</td>
22+
</tr>
23+
24+
<tr>
25+
<th scope="row">2</th>
26+
<td>Get haircut</td>
27+
<td>Eric</td>
28+
</tr>
29+
</tbody>
30+
</table>
31+
</div>
32+
</div>
1133
</div>
1234
);
1335
}

0 commit comments

Comments
 (0)