Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A component for grouping inputs.
useWorkspaceSettingsForm()
import React from "react" import {useWorkspaceSettingsForm} from "attio/client" export function WorkspaceSettings() { const {Form, InputGroup, NumberInput, TextInput} = useWorkspaceSettingsForm() return ( <Form> <InputGroup> <TextInput label="Server region" name="server_region" /> <NumberInput label="Timeout (seconds)" name="timeout_seconds" /> </InputGroup> </Form> ) }
Was this page helpful?