Skip to content

Commit 7825aae

Browse files
authored
Update class-components.md
1 parent 4d6be66 commit 7825aae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/basic/getting-started/class-components.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This is not necessary as `React.Component<P,S>` already marks them as immutable.
6161

6262
</details>
6363

64-
**Class Methods**: Do it like normal, but just remember any arguments for your functions also need to be typed:
64+
**Class Properties**: Do it like normal, but just remember any arguments for your functions also need to be typed:
6565

6666
```tsx
6767
class App extends React.Component<{ message: string }, { count: number }> {
@@ -84,7 +84,7 @@ class App extends React.Component<{ message: string }, { count: number }> {
8484

8585
[View in the TypeScript Playground](https://www.typescriptlang.org/play/?jsx=2#code/JYWwDg9gTgLgBAJQKYEMDG8BmUIjgcilQ3wFgAoCtAGxQGc64BBMMOJADxiQDsATRsnQwAdAGFckHrxgAeAN5wQSBigDmSAFxw6MKMB5q4AXwA0cRWggBXHjG09rIAEZIoJgHwWKcHTBTccAC8FnBWtvZwAAwmANw+cET8bgAUAJTe5L6+RDDWUDxwKQnZcLJ8wABucBA8YtTAaADWQfLpwV4wABbAdCIGaETKdikAjGnGHiWlFt29ImA4YH3KqhrGsz19ugFIIuF2xtO+sgD0FZVTWdlp8ddH1wNDMsFFKCCRji5uGUFe8tNTqc4A0mkg4HM6NNISI6EgYABlfzcFI7QJ-IoA66lA6RNF7XFwADUcHeMGmxjStwSxjuxiAA)
8686

87-
**Class Properties**: If you need to declare class properties for later use, just declare it like `state`, but without assignment:
87+
**Class Methods**: If you need to declare class methods for later use, just declare it like `state`, but without assignment:
8888

8989
```tsx
9090
class App extends React.Component<{

0 commit comments

Comments
 (0)