We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10ba00d commit cece2f6Copy full SHA for cece2f6
1 file changed
docs/fern/docs/pages/sdk/account-settings.mdx
@@ -0,0 +1,23 @@
1
+---
2
+title: AccountSettings
3
4
+
5
+# AccountSettings
6
7
+A component that renders account settings sections, either as a full page or within a layout.
8
9
+## Parameters
10
11
+- `fullPage` (optional): `boolean` - Determines whether to render the settings in a full-page layout. Default is `false`.
12
13
+## Example
14
15
+```tsx
16
+import { AccountSettings } from '@stackframe/stack';
17
18
+// Render account settings within a layout
19
+const DefaultSettings = () => <AccountSettings />;
20
21
+// Render account settings as a full page
22
+const FullPageSettings = () => <AccountSettings fullPage={true} />;
23
+```
0 commit comments