We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab7d5e commit 3346238Copy full SHA for 3346238
react-todos/src/App.js
@@ -1,13 +1,35 @@
1
-import './App.css';
+import "./App.css";
2
3
function App() {
4
return (
5
- <div className="App">
6
- <header className="App-header">
7
- <p>
8
- Demo App
9
- </p>
10
- </header>
+ <div>
+ <div>Your Todo's</div>
+ <table>
+ <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
19
+ <th scope="row">1</th>
20
+ <td>Feed dog</td>
21
+ <td>Eric</td>
22
23
+
24
25
+ <th scope="row">2</th>
26
+ <td>Get haircut</td>
27
28
29
+ </tbody>
30
+ </table>
31
+ </div>
32
33
</div>
34
);
35
}
0 commit comments