> ## Documentation Index
> Fetch the complete documentation index at: https://docs.attio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# <Section />

> A section of UI with a title and optional description. It can be thought of like a `<div/>` in DOM.

<img className="dark:hidden" width="720" height="440" noZoom src="https://mintcdn.com/attio/jXl5_SFM_Le7vWWN/images/workspace-settings-section.png?fit=max&auto=format&n=jXl5_SFM_Le7vWWN&q=85&s=838f7f2a9b0e8709bab94dbbe0fa4522" data-path="images/workspace-settings-section.png" />

<img className="hidden dark:block" width="720" height="440" noZoom src="https://mintcdn.com/attio/jXl5_SFM_Le7vWWN/images/workspace-settings-section-dark.png?fit=max&auto=format&n=jXl5_SFM_Le7vWWN&q=85&s=0670cb631810cd60a2abbfd3d5db858f" data-path="images/workspace-settings-section-dark.png" />

<Note>
  This component is returned by
  [`useWorkspaceSettingsForm()`](../../settings/use-workspace-settings-form).
</Note>

## Example

```tsx workspace-settings.tsx theme={"system"}
import React from "react"
import {useWorkspaceSettingsForm} from "attio/client"
import type {App} from "attio"

export const workspaceSettings: App.Settings.Workspace = {
  Page,
}

function Page() {
  const {Form, TextInput, Section} = useWorkspaceSettingsForm()

  return (
    <Form>
      <Section title="General Settings" description="Configure basic app settings.">
        <TextInput label="Display name" name="display_name" />
        <TextInput label="Environment" name="environment" />
      </Section>
      <Section title="Webhook Settings">
        <TextInput label="Webhook URL" name="webhook_url" type="url" />
      </Section>
    </Form>
  )
}
```

## Props

<ParamField path="title" type="string" required>
  The title of the section. It will be displayed in a stronger font than the content of the section.
</ParamField>

<ParamField path="description" type="string">
  An optional description that provides additional context about the section.
</ParamField>

<ParamField path="children" type="React.ReactNode" required>
  The text (or components) content of the section.
</ParamField>
