Commit e0710643 authored by augustjd's avatar augustjd Committed by Sindre Sorhus

Typo in app.tsx importing TodoModel from ./TodoModel. (#1609)

Compiling as downloaded (with `tsc -p js/`) yields the following error:
```
js/app.tsx(12,27): error TS2307: Cannot find module './TodoModel'.
```
parent 14137c15
......@@ -9,7 +9,7 @@
declare var Router;
import { TodoModel } from "./TodoModel";
import { TodoModel } from "./todoModel";
import { TodoFooter } from "./footer";
import { TodoItem } from "./todoItem";
import { ALL_TODOS, ACTIVE_TODOS, COMPLETED_TODOS, ENTER_KEY } from "./constants";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment