Skip to content

Commit

Permalink
Added selecting for react version
Browse files Browse the repository at this point in the history
  • Loading branch information
chorobinaccess committed Oct 22, 2018
1 parent 440ef61 commit c93220a
Show file tree
Hide file tree
Showing 23 changed files with 2,442 additions and 59 deletions.
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<html>
<head>
<title>Task List</title>
</head>
<body>
<div id="app"></div>
</body>
</html>
6 changes: 6 additions & 0 deletions models/task.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export interface Task {
readonly title: string;
readonly description: string;
readonly due: Date;
readonly assignee: string;
}
Loading

0 comments on commit c93220a

Please sign in to comment.