You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React exposes a few built-in components that you can use in your JSX.
7
+
React menyediakan beberapa komponen bawaan yang dapat Anda gunakan dalam JSX Anda.
8
8
9
9
</Intro>
10
10
11
11
---
12
12
13
-
## Built-in components {/*built-in-components*/}
13
+
## Komponen bawaan {/*built-in-components*/}
14
14
15
-
*[`<Fragment>`](/reference/react/Fragment), alternatively written as `<>...</>`, lets you group multiple JSX nodes together.
16
-
*[`<Profiler>`](/reference/react/Profiler)lets you measure rendering performance of a React tree programmatically.
17
-
*[`<Suspense>`](/reference/react/Suspense)lets you display a fallback while the child components are loading.
18
-
*[`<StrictMode>`](/reference/react/StrictMode)enables extra development-only checks that help you find bugs early.
15
+
*[`<Fragment>`](/reference/react/Fragment), sebagai alternatif dapat ditulis menjadi `<>...</>`, memungkinkan Anda untuk mengelompokkan beberapa simpul JSX secara bersamaan.
16
+
*[`<Profiler>`](/reference/react/Profiler)memungkinkan Anda mengukur kinerja *render*-ing dari pohon React secara programatik.
17
+
*[`<Suspense>`](/reference/react/Suspense)memungkinkan Anda untuk menampilkan *fallback* saat komponen-komponen *child* sedang dimuat.
18
+
*[`<StrictMode>`](/reference/react/StrictMode)mengaktifkan pemeriksaan tambahan khusus pengembangan yang membantu Anda menemukan bug secara dini.
19
19
20
20
---
21
21
22
-
## Your own components {/*your-own-components*/}
22
+
## Komponen Anda sendiri {/*your-own-components*/}
23
23
24
-
You can also [define your own components](/learn/your-first-component)as JavaScript functions.
24
+
Anda juga dapat [mendefinisikan komponen Anda sendiri](/learn/your-first-component)sebagai fungsi JavaScript.
0 commit comments