Skip to content

Commit 957746c

Browse files
committed
Initial
1 parent 5548452 commit 957746c

24 files changed

+9614
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
static/bundle.js
3+
.vscode

LICENSE

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
MIT License
1+
The MIT License (MIT)
22

3-
Copyright (c) 2018 John Suder
3+
Copyright (c) 2015 Michel Weststrate
4+
Forked from: https://github.com/bvanreeven/react-typescript
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal
@@ -19,3 +20,4 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1920
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2021
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2122
SOFTWARE.
23+

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# TypeScript Pseudo Dependent Typing Example with Mobx & React
2+
3+
4+
5+
# Installation
6+
Initial run:
7+
8+
* Install Node.js
9+
* `npm install`
10+
* `npm start`
11+

index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<html>
2+
<head>
3+
<title>To-Do List With Dependent Typing</title>
4+
<style>
5+
a {
6+
color: blue;
7+
text-decoration: underline;
8+
}
9+
.action {
10+
padding-left: 8px;
11+
}
12+
</style>
13+
</head>
14+
<body>
15+
<div id="root"></div>
16+
<script src="/static/bundle.js"></script>
17+
</body>
18+
</html>

0 commit comments

Comments
 (0)