Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Typescript-React Example #2088

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
23 changes: 23 additions & 0 deletions examples/typescript-react/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
11 changes: 11 additions & 0 deletions examples/typescript-react/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
lib/
node_modules/
coverage/
build/
out/
dist/
**/aggregated-translations/*.*
README.md
build_output/
# NPM project automation depends on some legacy structuring of the the CHANGELOG.md
CHANGELOG.md
14 changes: 14 additions & 0 deletions examples/typescript-react/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# typescript-react-todo
> A todo application written in TypeScript and React, based on the popular TodoMVC application.

Here is a version of the TodoMVC application written in TypeScript and React. The goal of doing this was for me to learn
TypeScript and see how it incorporates into React. I would love to contribute this back to TasteJS's original TodoMVC
but the project is still in search of maintainers and there are still many PR's that have not been reviewed, so I felt
there would be a few barriers for me being happy with the state of my contribution. Still, I learned a lot and would
encourage new devs to implement their own TodoMVC! ❤️❤️❤️

All of the browser tests from the original TodoMVC passed for this rendition at the time of initial creation. I want to
give a big thanks to all the original contributors to TodoMVC for creating a unique learning opportunity for everyone
wanting to learn the crazy new trends!

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
19 changes: 0 additions & 19 deletions examples/typescript-react/index.html

This file was deleted.

119 changes: 0 additions & 119 deletions examples/typescript-react/js/app.js

This file was deleted.

187 changes: 0 additions & 187 deletions examples/typescript-react/js/app.tsx

This file was deleted.

Loading