Skip to content

Commit 83e1945

Browse files
author
Orta Therox
committed
Updates the README for deprecating
1 parent 1404377 commit 83e1945

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
This repo is now deprecated. In the time since it created [TypeScript support](https://facebook.github.io/create-react-app/docs/adding-typescript) is now a deafult feature of [Create React App](https://facebook.github.io/create-react-app/).
2+
3+
This means you can get started with:
4+
5+
```sh
6+
# Creates an app called my-app
7+
npx create-react-app my-app --typescript
8+
9+
cd my-app
10+
11+
# Adds the type definitions
12+
npm install --save typescript @types/node @types/react @types/react-dom @types/jest
13+
14+
echo "Good to go :tada:"
15+
```
16+
17+
This repo offers some exmples on how to take that project into production and handle testing and state. However, you can
18+
also use the official documentation in the Create React App website for that.
19+
20+
If you'd like to know more about how to effectively do React with TypeScript, we recommend looking at the following:
21+
22+
- [React+TypeScript Cheatsheets](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet#reacttypescript-cheatsheets)
23+
- [Use TypeScript to develop React applications](https://egghead.io/courses/use-typescript-to-develop-react-applications)
24+
- [Ultimate React Component Patterns with Typescript 2.8](https://levelup.gitconnected.com/ultimate-react-component-patterns-with-typescript-2-8-82990c516935)
25+
26+
Below is the original README for this sample.
27+
28+
---
29+
130
# TypeScript React Starter
231

332
This quick start guide will teach you how to wire up TypeScript with [React](http://facebook.github.io/react/).

0 commit comments

Comments
 (0)