Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: translate directives page #722

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/content/reference/rsc/directives.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
---
title: "Directives"
title: "Direktif"
canary: true
---

<Canary>

These directives are needed only if you're [using React Server Components](/learn/start-a-new-react-project#bleeding-edge-react-frameworks) or building a library compatible with them.
Direktif ini diperlukan hanya jika Anda [menggunakan React Server Components](/learn/start-a-new-react-project#bleeding-edge-react-frameworks) atau membangun pustaka yang kompatibel dengannya.

</Canary>

<Intro>

Directives provide instructions to [bundlers compatible with React Server Components](/learn/start-a-new-react-project#bleeding-edge-react-frameworks).
Direktif memberikan instruksi kepada [bundler yang kompatibel dengan React Server Components](/learn/start-a-new-react-project#bleeding-edge-react-frameworks).

</Intro>

---

## Source code directives {/*source-code-directives*/}
## Kode sumber direktif {/*source-code-directives*/}

* [`'use client'`](/reference/rsc/use-client) lets you mark what code runs on the client.
* [`'use server'`](/reference/rsc/use-server) marks server-side functions that can be called from client-side code.
* [`'use client'`](/reference/rsc/use-client) memungkinkan Anda menandai kode yang berjalan pada klien.
* [`'use server'`](/reference/rsc/use-server) menandai fungsi sisi server yang dapat dipanggil dari kode sisi klien.
Loading