Skip to content

Commit 4033f3a

Browse files
committedJan 30, 2025
docs: fix server component statement
1 parent 044ff1c commit 4033f3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/start/framework/react/server-functions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ title: Server Functions
77

88
Server functions allow you to specify logic that can be invoked almost anywhere (even the client), but run **only** on the server. In fact, they are not so different from an API Route, but with a few key differences:
99

10-
- They are not publicly accessible via HTTP
11-
- They can be called from many places in your application, including loaders, hooks, components, etc.
10+
- They do not have stable public URL (but you'll be able to do this very soon!)
11+
- They can be called from anywhere in your application, including loaders, hooks, components, etc.
1212

1313
However, they are similar to regular API Routes in that:
1414

0 commit comments

Comments
 (0)
Please sign in to comment.