From e9c5a028f71bff054039ec28efe70064515983dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Tammerg=C3=A5rd?= Date: Tue, 7 Feb 2023 10:35:32 +0100 Subject: [PATCH] Update prerequisites --- README.md | 10 ++++++---- docs/basic/setup.md | 10 ++++++---- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 457bd871..462db4fc 100644 --- a/README.md +++ b/README.md @@ -147,10 +147,12 @@ Cheatsheets for experienced React developers getting started with TypeScript #### Prerequisites -1. Good understanding of [React](https://reactjs.org) -2. Familiarity with [TypeScript Types](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html) ([2ality's guide](http://2ality.com/2018/04/type-notation-typescript.html) is helpful. If you’re an absolute beginner in TypeScript, check out [chibicode’s tutorial](https://ts.chibicode.com/todo/).) -3. Having read [the TypeScript section in the official React docs](https://reactjs.org/docs/static-type-checking.html#typescript). -4. Having read [the React section of the new TypeScript playground](http://www.typescriptlang.org/play/index.html?jsx=2&esModuleInterop=true&e=181#example/typescript-with-react) (optional: also step through the 40+ examples under [the playground's](http://www.typescriptlang.org/play/index.html) Examples section) +You can use this cheatsheet for reference at any skill level, but basic understanding of React and TypeScript is assumed. Here is a list of prerequisites: + +- Good understanding of [React](https://reactjs.org). +- Familiarity with [TypeScript Basics](https://www.typescriptlang.org/docs/handbook/2/basic-types.html) and [Everyday Types](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html). +- Having read [the TypeScript section in the official React docs](https://reactjs.org/docs/static-type-checking.html#typescript). +- Having read [the React section of the TypeScript playground](http://www.typescriptlang.org/play/index.html?jsx=2&esModuleInterop=true&e=181#example/typescript-with-react). This guide will always assume you are starting with the latest TypeScript and React versions. Notes for older versions will be in expandable `
` tags. diff --git a/docs/basic/setup.md b/docs/basic/setup.md index 8ab793b3..763653b4 100644 --- a/docs/basic/setup.md +++ b/docs/basic/setup.md @@ -5,10 +5,12 @@ title: Setup TypeScript with React ## Prerequisites -1. Good understanding of [React](https://reactjs.org) -2. Familiarity with [TypeScript Types](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html) ([2ality's guide](http://2ality.com/2018/04/type-notation-typescript.html) is helpful. If you’re an absolute beginner in TypeScript, check out [chibicode’s tutorial](https://ts.chibicode.com/todo/).) -3. Having read [the TypeScript section in the official React docs](https://reactjs.org/docs/static-type-checking.html#typescript). -4. Having read [the React section of the new TypeScript playground](http://www.typescriptlang.org/play/index.html?jsx=2&esModuleInterop=true&e=181#example/typescript-with-react) (optional: also step through the 40+ examples under [the playground's](http://www.typescriptlang.org/play/index.html) Examples section) +You can use this cheatsheet for reference at any skill level, but basic understanding of React and TypeScript is assumed. Here is a list of prerequisites: + +- Good understanding of [React](https://reactjs.org). +- Familiarity with [TypeScript Basics](https://www.typescriptlang.org/docs/handbook/2/basic-types.html) and [Everyday Types](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html). +- Having read [the TypeScript section in the official React docs](https://reactjs.org/docs/static-type-checking.html#typescript). +- Having read [the React section of the TypeScript playground](http://www.typescriptlang.org/play/index.html?jsx=2&esModuleInterop=true&e=181#example/typescript-with-react). This guide will always assume you are starting with the latest TypeScript and React versions. Notes for older versions will be in expandable `
` tags.