Skip to content

Commit 89f524c

Browse files
committed
docs: update glossary page
1 parent f25b350 commit 89f524c

File tree

1 file changed

+0
-36
lines changed

1 file changed

+0
-36
lines changed

website/pages/docs/glossary.mdx

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ import { Warning } from "#/components/callout";
1111

1212
A class component is a component defined as a [JavaScript class](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes).
1313

14-
### Component
15-
16-
A `component` is a piece of the UI (user interface) that has its own logic and appearance. A `component` can be as small as a button, or as large as an entire page.
17-
1814
### Conditional Rendering
1915

2016
Conditional Rendering is the process of displaying different UI based on certain conditions.
@@ -49,12 +45,6 @@ The `deps` is an abbreviation for React Hook's dependencies array.
4945

5046
The `displayName` is a string used in debugging messages. It is used by React DevTools to determine what to display for the name of a `component` or `context`.
5147

52-
### Element
53-
54-
A plain object describing a component instance or DOM node and its desired properties.
55-
56-
Elements are the smallest building blocks of React apps.
57-
5848
### ER
5949

6050
An abbreviation for "ESLint React".
@@ -67,10 +57,6 @@ ESLint's [new config system](https://eslint.org/docs/latest/use/configure/config
6757

6858
It's usually a `eslint.config.js` file under the root directory of your project.
6959

70-
### ForwardRef
71-
72-
A React API that lets your component expose a DOM node to parent component with a [ref](https://react.dev/learn/manipulating-the-dom-with-refs).
73-
7460
### Fragment
7561

7662
A React component that lets you group elements without a wrapper node.
@@ -83,28 +69,6 @@ The shorthand syntax for a Fragment in JSX. It looks like `<>...</>`.
8369

8470
A function component is a component defined as a [JavaScript function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions).
8571

86-
### Key
87-
88-
The `key` prop is a string or a number that uniquely identifies it among other items in that array.
89-
90-
### List Rendering
91-
92-
The process of rendering components from a collection of data.
93-
94-
### Memo
95-
96-
The `memo` is a React API lets you skip re-rendering a component when its props are unchanged.
97-
98-
### Props
99-
100-
React component's properties.
101-
102-
When React sees an element representing a user-defined component, it passes JSX attributes and children to this component as a single object. We call this object "props".
103-
104-
### Ref
105-
106-
The `ref` lets you referencing values in React.
107-
10872
### Legacy React APIs
10973

11074
[APIs](https://react.dev/reference/react/legacy) are exported from the `react` package, but they are not recommended for use in newly written code.

0 commit comments

Comments
 (0)