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
Copy file name to clipboardexpand all lines: docs/src/content/introduction/ssr.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ type: docs
6
6
scope: null
7
7
---
8
8
9
-
# Server Rendering
9
+
# Server Side Rendering
10
10
11
11
In frameworks such as Next.js 13+, context is fully supported within Client Components, but it cannot be created or consumed directly within Server Components. This is because Server Components have no React state (since they're not interactive), and context is primarily used for rerendering interactive components deep in the tree after some React state has been updated.
12
12
Victory uses `createContext` to perform its operations and it must be rendered client side by adding the following directive in your components when used in a framework with Server Side Component support.
0 commit comments