Skip to content

Commit c81df33

Browse files
committed
Fix various broken anchor links on readme.md (#585)
* fix: readme links * fix: links
1 parent fa741bd commit c81df33

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

README.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -61,33 +61,33 @@ Cheatsheets for experienced React developers getting started with TypeScript
6161
- [VS Code Extensions](#vs-code-extensions)
6262
- [React + TypeScript Starter Kits](#react--typescript-starter-kits)
6363
- [Video Tutorial](#video-tutorial)<!--END-SECTION:setup-toc-->
64-
- [Section 2: Getting Started](#section-2--getting-started)
64+
- [Section 2: Getting Started](#section-2-getting-started)
6565
- [Function Components](#function-components)
6666
- [Hooks](#hooks)
6767
- [useState](#usestate)
6868
- [useReducer](#usereducer)
6969
- [useEffect / useLayoutEffect](#useeffect--uselayouteffect)
7070
- [useRef](#useref)
71-
- [Option 1: DOM element ref](#option-1--dom-element-ref)
72-
- [Option 2: Mutable value ref](#option-2--mutable-value-ref)
71+
- [Option 1: DOM element ref](#option-1-dom-element-ref)
72+
- [Option 2: Mutable value ref](#option-2-mutable-value-ref)
7373
- [See also](#see-also)
7474
- [useImperativeHandle](#useimperativehandle)
7575
- [Custom Hooks](#custom-hooks)
76-
- [More Hooks + TypeScript reading:](#more-hooks---typescript-reading-)
77-
- [Example React Hooks + TypeScript Libraries:](#example-react-hooks---typescript-libraries-)
76+
- [More Hooks + TypeScript reading:](#more-hooks--typescript-reading)
77+
- [Example React Hooks + TypeScript Libraries:](#example-react-hooks--typescript-libraries)
7878
- [Class Components](#class-components)
7979
- [Typing getDerivedStateFromProps](#typing-getderivedstatefromprops)
80-
- [You May Not Need `defaultProps`](#you-may-not-need--defaultprops-)
81-
- [Typing `defaultProps`](#typing--defaultprops-)
80+
- [You May Not Need `defaultProps`](#you-may-not-need-defaultprops)
81+
- [Typing `defaultProps`](#typing-defaultprops)
8282
- [Consuming Props of a Component with defaultProps](#consuming-props-of-a-component-with-defaultprops)
8383
- [Problem Statement](#problem-statement)
8484
- [Solution](#solution)
8585
- [Misc Discussions and Knowledge](#misc-discussions-and-knowledge)
8686
- [Typing Component Props](#typing-component-props)
8787
- [Basic Prop Types Examples](#basic-prop-types-examples)
8888
- [Useful React Prop Type Examples](#useful-react-prop-type-examples)
89-
- [Types or Interfaces?](#types-or-interfaces-)
90-
- [TL;DR](#tl-dr)
89+
- [Types or Interfaces?](#types-or-interfaces)
90+
- [TL;DR](#tldr)
9191
- [More Advice](#more-advice)
9292
- [Useful table for Types vs Interfaces](#useful-table-for-types-vs-interfaces)
9393
- [getDerivedStateFromProps](#getderivedstatefromprops)
@@ -96,17 +96,17 @@ Cheatsheets for experienced React developers getting started with TypeScript
9696
- [Context](#context)
9797
- [Basic Example](#basic-example)
9898
- [Extended Example](#extended-example)
99-
- [forwardRef/createRef](#forwardref-createref)
99+
- [forwardRef/createRef](#forwardrefcreateref)
100100
- [Generic forwardRefs](#generic-forwardrefs)
101101
- [Option 1 - Wrapper component](#option-1---wrapper-component)
102102
- [Option 2 - Redeclare forwardRef](#option-2---redeclare-forwardref)
103103
- [More Info](#more-info)
104104
- [Portals](#portals)
105105
- [Error Boundaries](#error-boundaries)
106-
- [Option 1: Using react-error-boundary](#option-1--using-react-error-boundary)
107-
- [Options 2: Writing your custom error boundary component](#options-2--writing-your-custom-error-boundary-component)
108-
- [Concurrent React/React Suspense](#concurrent-react-react-suspense)
109-
- [Troubleshooting Handbook: Types](#troubleshooting-handbook--types)
106+
- [Option 1: Using react-error-boundary](#option-1-using-react-error-boundary)
107+
- [Options 2: Writing your custom error boundary component](#options-2-writing-your-custom-error-boundary-component)
108+
- [Concurrent React/React Suspense](#concurrent-reactreact-suspense)
109+
- [Troubleshooting Handbook: Types](#troubleshooting-handbook-types)
110110
<!--START-SECTION:types-toc-->
111111
- [Union Types and Type Guarding](#union-types-and-type-guarding)
112112
- [Optional Types](#optional-types)
@@ -127,15 +127,15 @@ Cheatsheets for experienced React developers getting started with TypeScript
127127
- [Frequent Known Problems with TypeScript](#frequent-known-problems-with-typescript)
128128
- [TypeScript doesn't narrow after an object element null check](#typescript-doesnt-narrow-after-an-object-element-null-check)
129129
- [TypeScript doesn't let you restrict the type of children](#typescript-doesnt-let-you-restrict-the-type-of-children)<!--END-SECTION:types-toc-->
130-
- [Troubleshooting Handbook: Operators](#troubleshooting-handbook--operators)
131-
- [Troubleshooting Handbook: Utilities](#troubleshooting-handbook--utilities)
132-
- [Troubleshooting Handbook: tsconfig.json](#troubleshooting-handbook--tsconfigjson)
133-
- [Troubleshooting Handbook: Fixing bugs in official typings](#troubleshooting-handbook--fixing-bugs-in-official-typings)
134-
- [Troubleshooting Handbook: Globals, Images and other non-TS files](#troubleshooting-handbook--globals--images-and-other-non-ts-files)
130+
- [Troubleshooting Handbook: Operators](#troubleshooting-handbook-operators)
131+
- [Troubleshooting Handbook: Utilities](#troubleshooting-handbook-utilities)
132+
- [Troubleshooting Handbook: tsconfig.json](#troubleshooting-handbook-tsconfigjson)
133+
- [Troubleshooting Handbook: Fixing bugs in official typings](#troubleshooting-handbook-fixing-bugs-in-official-typings)
134+
- [Troubleshooting Handbook: Globals, Images and other non-TS files](#troubleshooting-handbook-globals-images-and-other-non-ts-files)
135135
- [Editor Tooling and Integration](#editor-tooling-and-integration)
136136
- [Linting](#linting)
137-
- [Other React + TypeScript resources](#other-react---typescript-resources)
138-
- [Recommended React + TypeScript talks](#recommended-react---typescript-talks)
137+
- [Other React + TypeScript resources](#other-react--typescript-resources)
138+
- [Recommended React + TypeScript talks](#recommended-react--typescript-talks)
139139
- [Time to Really Learn TypeScript](#time-to-really-learn-typescript)
140140
- [Example App](#example-app)
141141

0 commit comments

Comments
 (0)